| 1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace WorkFlowApi.ViewModels
- {
- /// <summary>
- /// 用户列表
- /// </summary>
- 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; }
- }
- }
|