using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WorkFlowApi.ViewModels { /// /// 用户列表 /// public class UserAccountListView { public int UserId { get; set; } = 0; public string Usercode { get; set; } public string Username { get; set; } public int DeptId { get; set; } = 0; public int RoleId { get; set; } = 0; public string SexFlag { get; set; } public string Mobile { get; set; } public string Telephone { get; set; } public DateTime? CreateTime { set; get; } } }