using System; using Myshipping.Core; namespace Myshipping.Core.Service { /// /// 订舱客户输出参数 /// public class DjyCustomerDto { /// /// 主键 /// public long? Id { get; set; } /// /// 代码 /// public string CodeName { get; set; } /// /// 简称 /// public string ShortName { get; set; } /// /// 全称 /// public string FullName { get; set; } /// /// 负责人 /// public string Chief { get; set; } /// /// 电话 /// public string Tel { get; set; } /// /// 邮箱 /// public string Email { get; set; } /// /// QQ /// public string QQ { get; set; } /// /// 网址 /// public string WebUrl { get; set; } /// /// 省份 /// public string Province { get; set; } /// /// 城市 /// public string City { get; set; } /// /// 地址 /// public string Addr { get; set; } /// /// 英文全名 /// public string FullNameEN { get; set; } /// /// 英文地址 /// public string AddrEN { get; set; } /// /// 属性字符串 /// public string PropString { get; set; } /// /// 发票抬头 /// public string InvTitle { get; set; } /// /// 纳税人识别号 /// public string TaxNO { get; set; } /// /// 发票地址电话 /// public string InvAddrTel { get; set; } /// /// 人民币开户行 /// public string RMBBank { get; set; } /// /// 人民币账号 /// public string RmbAccount { get; set; } /// /// 美元开户行 /// public string USDBank { get; set; } /// /// 美元账号 /// public string USDAccount { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 租户ID /// public long? TenantId { get; set; } } }