using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace WorkFlowApi.ViewModels
{
///
/// 分页查询条件
///
public class UserAccountListInput : PageInput
{
public string usercode { get; set; }
public string username { get; set; }
public string deptid { get; set; }
}
///
/// 新增编辑输入
///
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; }
}
}