120 lines
2.6 KiB
Java
120 lines
2.6 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_ACCOUNT{
|
|
/**
|
|
* 客户账户表<br><br>
|
|
* 代表本类映射的BizObjectClass
|
|
*/
|
|
public static final String CLASS_NAME = "jbo.app.tenwa.customer.CUSTOMER_ACCOUNT";
|
|
/**
|
|
* id STRING(32)<br>
|
|
*/
|
|
public static final String id = "id";
|
|
/**
|
|
* 银行账号 STRING(32)<br>
|
|
*/
|
|
public static final String acc_number = "acc_number";
|
|
/**
|
|
* 开户银行 STRING(32)<br>
|
|
*/
|
|
public static final String bank_name = "bank_name";
|
|
/**
|
|
* 帐户名称 STRING(32)<br>
|
|
*/
|
|
public static final String account = "account";
|
|
/**
|
|
* 是否主账号 STRING(32)<br>
|
|
*/
|
|
public static final String is_main = "is_main";
|
|
/**
|
|
* 帐户使用情况 STRING(32)<br>
|
|
*/
|
|
public static final String acc_info = "acc_info";
|
|
/**
|
|
* 客户id STRING(32)<br>
|
|
*/
|
|
public static final String customerid = "customerid";
|
|
/**
|
|
* 录入人 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 MOBILE = "MOBILE";
|
|
/**
|
|
* 项目编号 STRING(32)<br>
|
|
*/
|
|
public static final String project_id = "project_id";
|
|
/**
|
|
* 合同编号 STRING(32)<br>
|
|
*/
|
|
public static final String contract_id = "contract_id";
|
|
/**
|
|
* 银行卡类型(付款/扣款) STRING(32)<br>
|
|
*/
|
|
public static final String acc_type = "acc_type";
|
|
/**
|
|
* 付款金额 DOUBLE(22)<br>
|
|
*/
|
|
public static final String pay_money = "pay_money";
|
|
/**
|
|
* 银行卡四要素验证结果 STRING(200)<br>
|
|
*/
|
|
public static final String VERIFY = "VERIFY";
|
|
/**
|
|
* 验证结果 STRING(32)<br>
|
|
*/
|
|
public static final String VERIFY_STATUS = "VERIFY_STATUS";
|
|
/**
|
|
* 签约信息 STRING(32)<br>
|
|
*/
|
|
public static final String sign_status = "sign_status";
|
|
/**
|
|
* 证件编号 STRING(40)<br>
|
|
*/
|
|
public static final String CERTID = "CERTID";
|
|
/**
|
|
* 客户类型 STRING(40)<br>
|
|
*/
|
|
public static final String CUSTTYPE = "CUSTTYPE";
|
|
/**
|
|
* 扣款类型 STRING(20)<br>
|
|
*/
|
|
public static final String collect_type = "collect_type";
|
|
/**
|
|
* 银行编号 STRING(20)<br>
|
|
*/
|
|
public static final String bank_code = "bank_code";
|
|
/**
|
|
* 银行名称 STRING(20)<br>
|
|
*/
|
|
public static final String bank_type = "bank_type";
|
|
} |