using Abp.Application.Services.Dto; using Abp.AutoMapper; namespace ShwasherSys.CompanyInfo.EmployeeInfo.Dto { /// /// 人员信息维护 /// [AutoMapTo(typeof(Employee)),AutoMapFrom(typeof(Employee))] public class EmployeeDto: EntityDto { /// /// 人员编号 /// public string No { get; set; } /// /// 人员姓名 /// public string Name { get; set; } /// /// 身份证号 /// public string CardId { get; set; } /// /// 性别 /// public int Gender { get; set; } /// /// 手机号 /// public string PhoneNumber { get; set; } /// /// 部门 /// public string DepartmentNo { get; set; } /// /// 职务 /// public string DutyNo { get; set; } /// /// 详情 /// public string Description { get; set; } /// /// 登陆账号 /// public string UserName { get; set; } } }