StoreHouseDto.cs 905 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. using ShwasherSys.BasicInfo;
  5. namespace ShwasherSys.BasicInfo.StoreHouses.Dto
  6. {
  7. [AutoMapTo(typeof(StoreHouse)), AutoMapFrom(typeof(StoreHouse))]
  8. public class StoreHouseDto : EntityDto<int>
  9. {
  10. public string StoreHouseName { get; set; }
  11. public int? StoreHouseTypeId { get; set; }
  12. public string StoreHouseTypeName { get; set; }
  13. public string Address { get; set; }
  14. public string Tel { get; set; }
  15. public string Fax { get; set; }
  16. public string ContactMan { get; set; }
  17. public string Remark { get; set; }
  18. public string IsLock { get; set; }
  19. public DateTime? TimeCreated { get; set; }
  20. public DateTime? TimeLastMod { get; set; }
  21. public string UserIDLastMod { get; set; }
  22. public string StoreHouseNo { get; set; }
  23. }
  24. }