using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.District { /// /// 地区 国家表 /// [SugarTable("Dis_Country")] public class Dis_Country : EntityBase { /// /// 洲际表Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int IntercontinentalId { get; set; } /// /// 国家名称 全称 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")] public string? FullName { get; set; } /// /// 国家名称 简称 中文 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string? CnShortName { get; set; } /// /// 国家名称 简称 英文 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")] public string? EnShortName { get; set; } /// /// 国家币种三字码Code /// public string? CurrencyCode { get; set; } } }