StandardDto.cs 494 B

1234567891011121314151617
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. using ShwasherSys.ProductInfo;
  5. namespace ShwasherSys.ProductInfo.Dto
  6. {
  7. [AutoMapTo(typeof(Standard)),AutoMapFrom(typeof(Standard))]
  8. public class StandardDto: EntityDto<int>
  9. {
  10. public string StandardName { get; set; }
  11. public string StandardDesc { get; set; }
  12. public DateTime? TimeCreated { get; set; }
  13. public DateTime? TimeLastMod { get; set; }
  14. public string UserIDLastMod { get; set; }
  15. }
  16. }