32 lines
683 B
Java
32 lines
683 B
Java
package jbo.oti;
|
|
|
|
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.oti.CUSTOMER_INFO";
|
|
/**
|
|
* 信贷客户号 STRING(30)<br>
|
|
*/
|
|
public static final String CustomerId = "CustomerId";
|
|
/**
|
|
* 信贷客户名称 STRING(40)<br>
|
|
*/
|
|
public static final String CustomerName = "CustomerName";
|
|
/**
|
|
* 证件类型 STRING(20)<br>
|
|
*/
|
|
public static final String CertType = "CertType";
|
|
/**
|
|
* 证件号码 STRING(21)<br>
|
|
*/
|
|
public static final String CertID = "CertID";
|
|
} |