| 12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace WorkFlowApi.ViewModels
- {
- /// <summary>
- /// 分页查询条件
- /// </summary>
- public class UserAccountListInput : PageInput
- {
- public string usercode { get; set; }
- public string username { get; set; }
- public string deptid { get; set; }
- }
- /// <summary>
- /// 新增编辑输入
- /// </summary>
- public class UserAccountAddEditInput
- {
- public int UserId { get; set; } = 0;
- public string Usercode { get; set; }
- public string Username { get; set; }
- public string Password { get; set; }
- public int? DeptId { get; set; } = 0;
- public int? RoleId { get; set; } = 0;
- public string Mobile { get; set; }
- public string Telephone { get; set; }
- public DateTime? Birthday { get; set; }
- public string Remark { get; set; }
- }
- }
|