Dis_Intercontinental.cs 930 B

123456789101112131415161718192021222324252627282930313233
  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_Intercontinental")]
  12. public class Dis_Intercontinental :EntityBase
  13. {
  14. /// <summary>
  15. /// 洲际名称 全称
  16. /// </summary>
  17. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
  18. public string? FullName { get; set; }
  19. /// <summary>
  20. /// 洲际名称 中文
  21. /// </summary>
  22. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  23. public string? CnShortName { get; set; }
  24. /// <summary>
  25. /// 洲际名称 英文
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
  28. public string? EnShortName { get; set; }
  29. }
  30. }