DepartmentDto.cs 592 B

12345678910111213141516171819
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. using ShwasherSys.BasicInfo;
  5. namespace ShwasherSys.BasicInfo.Departments.Dto
  6. {
  7. [AutoMapTo(typeof(Department)),AutoMapFrom(typeof(Department))]
  8. public class DepartmentDto: EntityDto<string>
  9. {
  10. public string DepartmentName { get; set; }
  11. public string Remark { get; set; }
  12. public DateTime? TimeCreated { get; set; }
  13. public DateTime? TimeLastMod { get; set; }
  14. public string UserIDLastMod { get; set; }
  15. public string IsLock { get; set; }
  16. public string OrderStatusList { get; set; }
  17. }
  18. }