SettingDto.cs 552 B

1234567891011121314151617
  1. using Abp.Application.Services.Dto;
  2. using Abp.AutoMapper;
  3. namespace ShwasherSys.BaseSysInfo.Settings.Dto
  4. {
  5. [AutoMapTo(typeof(SysSetting)), AutoMapFrom(typeof(SysSetting))]
  6. public class SettingDto : EntityDto<int>
  7. {
  8. public string SettingNo { get; set; }
  9. public string SettingName { get; set; }
  10. public int SettingType { get; set; }
  11. public string Code { get; set; }
  12. public string Value { get; set; }
  13. public string Description { get; set; }
  14. public string Remark { get; set; }
  15. }
  16. }