DutyDto.cs 512 B

123456789101112131415161718
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. using ShwasherSys.BasicInfo;
  5. namespace ShwasherSys.BasicInfo.Dutys.Dto
  6. {
  7. [AutoMapTo(typeof(Duty)),AutoMapFrom(typeof(Duty))]
  8. public class DutyDto: EntityDto<int>
  9. {
  10. public string DutyName { 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. }
  17. }