Dis_Country.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Entities.District
  7. {
  8. /// <summary>
  9. /// 地区 国家表
  10. /// </summary>
  11. [SugarTable("Dis_Country")]
  12. public class Dis_Country : EntityBase
  13. {
  14. /// <summary>
  15. /// 洲际表Id
  16. /// </summary>
  17. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  18. public int IntercontinentalId { get; set; }
  19. /// <summary>
  20. /// 国家名称 全称
  21. /// </summary>
  22. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
  23. public string? FullName { get; set; }
  24. /// <summary>
  25. /// 国家名称 简称 中文
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  28. public string? CnShortName { get; set; }
  29. /// <summary>
  30. /// 国家名称 简称 英文
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
  33. public string? EnShortName { get; set; }
  34. /// <summary>
  35. /// 国家币种三字码Code
  36. /// </summary>
  37. public string? CurrencyCode { get; set; }
  38. }
  39. }