using System; using SqlSugar; using System.ComponentModel; using Myshipping.Core.Entity; namespace Myshipping.Core.Entity { /// /// /// [SugarTable("djy_customer")] [Description("客户")] public class DjyCustomer : DBEntityTenant { /// /// 代码 /// 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 string OPID { get; set; } /// /// 单证id /// public string DOCID { get; set; } /// /// 操作 /// public string OP { get; set; } /// /// 单证 /// public string DOC { get; set; } /// /// 销售ID /// public string SALEID { get; set; } /// /// 销售 /// public string SALE { get; set; } /// /// 客服ID /// public string CUSTSERVICEID { get; set; } /// /// 客服 /// public string CUSTSERVICE { get; set; } /// /// 提单信息 /// public string TIDANINFO { get; set; } /// /// 东胜id /// public string BSNO { get; set; } /// /// 服务项目 /// public string ServiceItem { get; set; } /// /// 等级 /// public string Level { get; set; } } }