104 lines
2.3 KiB
Java
104 lines
2.3 KiB
Java
package jbo.app.tenwa.customer;
|
|
|
|
import java.lang.String;
|
|
|
|
/**
|
|
* 客户基本信息表 - JBO命名常量类<br><br>
|
|
* Note: This file is generated by ADE tools, <em>dont</em> modify it.<br>
|
|
|
|
*/
|
|
public interface CUSTOMER_INFO{
|
|
/**
|
|
* 客户基本信息表<br><br>
|
|
* 代表本类映射的BizObjectClass
|
|
*/
|
|
public static final String CLASS_NAME = "jbo.app.tenwa.customer.CUSTOMER_INFO";
|
|
/**
|
|
* 客户编号 STRING(40)<br>
|
|
*/
|
|
public static final String customerid = "customerid";
|
|
/**
|
|
* 客户名称 STRING(200)<br>
|
|
*/
|
|
public static final String customername = "customername";
|
|
/**
|
|
* 证件国别 STRING(40)<br>
|
|
*/
|
|
public static final String nationcode = "nationcode";
|
|
/**
|
|
* 证件类型 STRING(20)<br>
|
|
*/
|
|
public static final String certtype = "certtype";
|
|
/**
|
|
* 证件号 STRING(40)<br>
|
|
*/
|
|
public static final String certid = "certid";
|
|
/**
|
|
* 内部行业 STRING(40)<br>
|
|
*/
|
|
public static final String custkind = "custkind";
|
|
/**
|
|
* 客户类别 STRING(20)<br>
|
|
*/
|
|
public static final String customertype = "customertype";
|
|
/**
|
|
* 状态 STRING(20)<br>
|
|
*/
|
|
public static final String status = "status";
|
|
/**
|
|
* 核心客户号 STRING(40)<br>
|
|
*/
|
|
public static final String mfcustomerid = "mfcustomerid";
|
|
/**
|
|
* 所属关联集团代码 STRING(40)<br>
|
|
*/
|
|
public static final String belonggroupid = "belonggroupid";
|
|
/**
|
|
* 渠道 STRING(18)<br>
|
|
*/
|
|
public static final String channel = "channel";
|
|
/**
|
|
* 贷款卡编号 STRING(32)<br>
|
|
*/
|
|
public static final String loancardno = "loancardno";
|
|
/**
|
|
* 客户规模(区分中小企业客户) STRING(20)<br>
|
|
*/
|
|
public static final String customerscale = "customerscale";
|
|
/**
|
|
* 备注 STRING(250)<br>
|
|
*/
|
|
public static final String remark = "remark";
|
|
/**
|
|
* 登记人 STRING(32)<br>
|
|
*/
|
|
public static final String inputuserid = "inputuserid";
|
|
/**
|
|
* 登记机构 STRING(32)<br>
|
|
*/
|
|
public static final String inputorgid = "inputorgid";
|
|
/**
|
|
* 更新人 STRING(32)<br>
|
|
*/
|
|
public static final String updateuserid = "updateuserid";
|
|
/**
|
|
* 更新部门 STRING(32)<br>
|
|
*/
|
|
public static final String updateorgid = "updateorgid";
|
|
/**
|
|
* 登记时间 STRING(32)<br>
|
|
*/
|
|
public static final String inputtime = "inputtime";
|
|
/**
|
|
* 更新时间 STRING(32)<br>
|
|
*/
|
|
public static final String updatetime = "updatetime";
|
|
/**
|
|
* 经销商编号 STRING(32)<br>
|
|
*/
|
|
public static final String distributor_id = "distributor_id";
|
|
/**
|
|
* 客户编码 STRING(32)<br>
|
|
*/
|
|
public static final String customer_num = "customer_num";
|
|
} |