|
@@ -25,4 +25,89 @@ export class Customer extends Page{
|
|
|
isAbbreviation?:string;//是否存在同样客户缩写1不存在2存在
|
|
|
fdCustomerList?:[];//自身集合
|
|
|
pkOrg?:string;//组织id
|
|
|
+ //客商来源(数据字典)
|
|
|
+ customerSourceDictValue?:string;
|
|
|
+
|
|
|
+ //客商分类(数据字典)
|
|
|
+ customerClassificationDictValue?:string;
|
|
|
+
|
|
|
+ //客商行业id
|
|
|
+ baseCustomerIndustryId?:string;
|
|
|
+
|
|
|
+ //销售状态id
|
|
|
+ baseSalesStatusId?:string;
|
|
|
+
|
|
|
+ //客商属性
|
|
|
+ customerAttribute?:string;
|
|
|
+
|
|
|
+ //客商分组(数据字典)
|
|
|
+ customerGroupingDictValue?:string;
|
|
|
+
|
|
|
+ //商务关系(数据字典)
|
|
|
+ businessRelationsDictValue?:string;
|
|
|
+
|
|
|
+ //上级单位(本表id)
|
|
|
+ parentId?:string;
|
|
|
+
|
|
|
+ //使用状态(数据字典)
|
|
|
+ useStatusDictValue?:string;
|
|
|
+
|
|
|
+ //休眠类型(数据字典)
|
|
|
+ sleepTypeDictValue?:string;
|
|
|
+
|
|
|
+ //单位网址
|
|
|
+ companyWebsite?:string;
|
|
|
+
|
|
|
+ //公司成立日期
|
|
|
+ /**公司成立日期 yyyy-MM-dd*/
|
|
|
+ companyEstablishDate?:string;
|
|
|
+
|
|
|
+ //单位规模(数据字典)
|
|
|
+ unitSizeDictValue?:string;
|
|
|
+
|
|
|
+ //人员规模(数据字典)
|
|
|
+ personnelSizeDictValue?:string;
|
|
|
+
|
|
|
+ //注册资金(数据字典)
|
|
|
+ registeredCapitalDictValue?:string;
|
|
|
+
|
|
|
+ //年营业额
|
|
|
+ annualTurnover?:number;
|
|
|
+
|
|
|
+ //客户关系(数据字典)
|
|
|
+ customerRelationshipDictValue?:string;
|
|
|
+
|
|
|
+ //价值级别(数据字典)
|
|
|
+ valueLevelDictValue?:string;
|
|
|
+
|
|
|
+ //销售人员id
|
|
|
+ salesmanId?:string;
|
|
|
+
|
|
|
+ //销售人员名称
|
|
|
+ salesmanName?:string;
|
|
|
+
|
|
|
+ //开票单位名称
|
|
|
+ billingUnitName?:string;
|
|
|
+
|
|
|
+ //纳税人识别号
|
|
|
+ taxpayerIdentificationNumber?:string;
|
|
|
+
|
|
|
+ //开票地址
|
|
|
+ billingAddress?:string;
|
|
|
+
|
|
|
+ //开票电话
|
|
|
+ billingTelephone?:string;
|
|
|
+
|
|
|
+ //开票银行
|
|
|
+ billingBank?:string;
|
|
|
+
|
|
|
+ //开票银行账号
|
|
|
+ billingBankAccountNumber?:string;
|
|
|
+
|
|
|
+ //开发人员
|
|
|
+ developer?:string;
|
|
|
+
|
|
|
+ //开发时间
|
|
|
+ /**开发时间 yyyy-MM-dd*/
|
|
|
+ developmentDate?:string;
|
|
|
}
|