namespace Ds.Modules.DsEntity.Auth { /// /// 国家 /// public class Ds_Sys_Country : BasEntityNoTenant { /// /// 国家名称 /// public string CountryName { get; set; } /// 国家英文名称 /// public string CountryEnName { get; set; } /// /// 国家代码 /// public string CountryCode { get; set; } /// /// 国家英文编码 /// public string CountryEnCode { get; set; } /// /// 国家电话区号 /// public string CountryPhoneCode { get; set; } /// /// 国家货币 /// public string CountryCurrency { get; set; } /// /// 描述 /// public string CountryDescription { get; set; } } /// /// 客户表国家自定义表 /// public class Ds_Sys_Country_Customer : BaseEntityTenant { /// /// 国家表主键 /// public long DsSysCountryId { get; set; } /// /// 代码 /// public string CustomerCode { get; set; } } }