apzl_leasing/src_tenwa/com/tenwa/cgbbank/dto/CGBMessageHead.java
2023-09-11 18:27:45 +08:00

140 lines
2.7 KiB
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.cgbbank.dto;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlCData;
/**
* @program: apzl_leasing
* @description:
* @author: 李超杰
* @create: 2023-06-07 09:40
*/
public class CGBMessageHead {
/**
* 交易码
* @description: 交易代码(必填字段)
*/
String tranCode;
/**
* 客户号
* @description: 标识企业身份,为银企直联的客户号(必填字段)
*/
String cifMaster;
/**
* 企业财务系统流水号
* @description: 企业财务系统自己产生的流水号。每天唯一(转账类交易每天必须唯一,查询类交易可不唯一,必填字段)
*/
String entSeqNo;
/**
* 日期
* @description: 企业财务系统日期格式YYYYMMDD(必填字段)
*/
String tranDate;
/**
* 时间
* @description: 企业财务系统时间格式HHMMSS(必填字段)
*/
String tranTime;
/**
* 返回码
* @description: 企业上送报文留空填空格银行默认返回000
*/
String retCode;
/**
* 返回消息
* @description:
*/
String retMsg;
/**
* 操作员
* @description: 银企直联的操作员(当设置了查询、转账交易必须校验操作员用户名密码,此字段必填)
*/
String entUserId;
/**
* 操作密码
* @description: 银企直联操作员登录密码(当设置了查询、转账交易必须校验操作员用户名密码,此字段必填)
*/
@JacksonXmlCData
String password;
public String getTranCode() {
return tranCode;
}
public void setTranCode(String tranCode) {
this.tranCode = tranCode;
}
public String getCifMaster() {
return cifMaster;
}
public void setCifMaster(String cifMaster) {
this.cifMaster = cifMaster;
}
public String getEntSeqNo() {
return entSeqNo;
}
public void setEntSeqNo(String entSeqNo) {
this.entSeqNo = entSeqNo;
}
public String getTranDate() {
return tranDate;
}
public void setTranDate(String tranDate) {
this.tranDate = tranDate;
}
public String getTranTime() {
return tranTime;
}
public void setTranTime(String tranTime) {
this.tranTime = tranTime;
}
public String getRetCode() {
return retCode;
}
public void setRetCode(String retCode) {
this.retCode = retCode;
}
public String getRetMsg() {
return retMsg;
}
public void setRetMsg(String retMsg) {
this.retMsg = retMsg;
}
public String getEntUserId() {
return entUserId;
}
public void setEntUserId(String entUserId) {
this.entUserId = entUserId;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}