using DS.Module.Core; namespace DS.WMS.Core.Code.Dtos; /// /// 国家信息下拉选择返回 /// public class CodeCountrySelectRes { /// /// 主键Id /// public long Id { get; set; } /// /// 国家唯一代码 /// public string CountryCode { get; set; } = ""; /// /// 国家名称 /// public string CountryName { get; set; } = ""; /// /// 国家英文名称 /// public string CountryEnName { get; set; } = ""; /// /// 所在大洲 /// public string Chau { get; set; } = ""; /// /// 首都 /// public string Capital { get; set; } = ""; /// /// 关税等级 /// public int Tariff { get; set; }= 0; /// /// 吨位税 /// public int TonnageTax { get; set; } = 0; /// /// 国家3字代码 /// public string CountryCode3 { get; set; } = ""; }