StateDto.cs 536 B

1234567891011121314151617
  1. using Abp.Application.Services.Dto;
  2. using Abp.AutoMapper;
  3. using WeOnlineApp.BaseInfo;
  4. namespace WeOnlineApp.BaseSystem.States.Dto
  5. {
  6. [AutoMapTo(typeof(SysState)), AutoMapFrom(typeof(SysState))]
  7. public class StateDto : EntityDto<int>
  8. {
  9. public string StateNo { get; set; }
  10. public string StateName { get; set; }
  11. public string TableName { get; set; }
  12. public string ColumnName { get; set; }
  13. public string CodeValue { get; set; }
  14. public string DisplayValue { get; set; }
  15. }
  16. }