You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.3 KiB
C#

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