apzl_leasing/src_cmb/com/tenwa/sdk/VO/SDKInfoVO.java
2018-06-20 15:01:59 +08:00

47 lines
801 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.tenwa.sdk.VO;
public class SDKInfoVO {
/*
* URL[https://u.ebank.cmbchina.com/CmbBank_GenShell/UI/Help/DCBank2/API.aspx?
* 03ZFJS/08DCPAYREQ]
*/
/*
* 名称[函数名] 类型[C(1, 20)] 取值[DCPAYREQ] 可空[否] 备注[无]
*/
private String FUNNAM;
/*
* 名称[数据格式] 类型[N(1)] 取值[2xml格式三] 可空[否] 备注[无]
*/
private int DATTYP;
/*
* 名称[登陆用户名] 类型[Z(1,20)] 取值[] 可空[可] 备注[前置机模式必填]
*/
private String LGNNAM;
public String getFUNNAM() {
return FUNNAM;
}
public void setFUNNAM(String fUNNAM) {
FUNNAM = fUNNAM;
}
public int getDATTYP() {
return DATTYP;
}
public void setDATTYP(int dATTYP) {
DATTYP = dATTYP;
}
public String getLGNNAM() {
return LGNNAM;
}
public void setLGNNAM(String lGNNAM) {
LGNNAM = lGNNAM;
}
}