76 lines
1.6 KiB
Java
76 lines
1.6 KiB
Java
package com.tenwa.collectaudit.cache;
|
|
|
|
/**
|
|
* λÓÚGZELINK--> BODY-->TRANS_SUM ÏÂ
|
|
* @author tenwapc
|
|
*
|
|
*/
|
|
public class Trans_Sum {
|
|
|
|
private String BUSINESS_CODE;
|
|
private String MERCHANT_ID;
|
|
private String SUBMIT_TIME;
|
|
private String TOTAL_ITEM;
|
|
private String EXPECT_SEND_TIME;//Ô¤Ô¼·¢ËÍʱ¼ä
|
|
private String TOTAL_SUM;
|
|
private String ID_TYPE;
|
|
private String ID;
|
|
private String TEL;
|
|
|
|
public String getEXPECT_SEND_TIME() {
|
|
return EXPECT_SEND_TIME;
|
|
}
|
|
public void setEXPECT_SEND_TIME(String eXPECT_SEND_TIME) {
|
|
EXPECT_SEND_TIME = eXPECT_SEND_TIME;
|
|
}
|
|
public String getID_TYPE() {
|
|
return ID_TYPE;
|
|
}
|
|
public void setID_TYPE(String iD_TYPE) {
|
|
ID_TYPE = iD_TYPE;
|
|
}
|
|
public String getID() {
|
|
return ID;
|
|
}
|
|
public void setID(String iD) {
|
|
ID = iD;
|
|
}
|
|
public String getTEL() {
|
|
return TEL;
|
|
}
|
|
public void setTEL(String tEL) {
|
|
TEL = tEL;
|
|
}
|
|
public String getBUSINESS_CODE() {
|
|
return BUSINESS_CODE;
|
|
}
|
|
public void setBUSINESS_CODE(String bUSINESS_CODE) {
|
|
BUSINESS_CODE = bUSINESS_CODE;
|
|
}
|
|
public String getMERCHANT_ID() {
|
|
return MERCHANT_ID;
|
|
}
|
|
public void setMERCHANT_ID(String mERCHANT_ID) {
|
|
MERCHANT_ID = mERCHANT_ID;
|
|
}
|
|
public String getSUBMIT_TIME() {
|
|
return SUBMIT_TIME;
|
|
}
|
|
public void setSUBMIT_TIME(String sUBMIT_TIME) {
|
|
SUBMIT_TIME = sUBMIT_TIME;
|
|
}
|
|
public String getTOTAL_ITEM() {
|
|
return TOTAL_ITEM;
|
|
}
|
|
public void setTOTAL_ITEM(String tOTAL_ITEM) {
|
|
TOTAL_ITEM = tOTAL_ITEM;
|
|
}
|
|
public String getTOTAL_SUM() {
|
|
return TOTAL_SUM;
|
|
}
|
|
public void setTOTAL_SUM(String tOTAL_SUM) {
|
|
TOTAL_SUM = tOTAL_SUM;
|
|
}
|
|
|
|
}
|