120 lines
2.3 KiB
Java
120 lines
2.3 KiB
Java
package com.tenwa.reckon.handler;
|
|
|
|
/**
|
|
* DistributorAccountLogEntity
|
|
* this is table 'distributor_account_log' of entity
|
|
* @author K
|
|
*
|
|
*/
|
|
public class DistributorAccountLogEntity {
|
|
|
|
private String distributorId,actionType,timestamp,accNumber,account,isMain,accInfo,openBank,province,district;
|
|
|
|
public DistributorAccountLogEntity() {
|
|
super();
|
|
}
|
|
|
|
public DistributorAccountLogEntity(String distributorId,
|
|
String actionType, String timestamp, String accNumber,
|
|
String account, String isMain, String accInfo, String openBank,
|
|
String province, String district) {
|
|
super();
|
|
this.distributorId = distributorId;
|
|
this.actionType = actionType;
|
|
this.timestamp = timestamp;
|
|
this.accNumber = accNumber;
|
|
this.account = account;
|
|
this.isMain = isMain;
|
|
this.accInfo = accInfo;
|
|
this.openBank = openBank;
|
|
this.province = province;
|
|
this.district = district;
|
|
}
|
|
|
|
|
|
public String getActionType() {
|
|
return actionType;
|
|
}
|
|
|
|
|
|
public void setActionType(String actionType) {
|
|
this.actionType = actionType;
|
|
}
|
|
|
|
public String getDistributorId() {
|
|
return distributorId;
|
|
}
|
|
|
|
public void setDistributorId(String distributorId) {
|
|
this.distributorId = distributorId;
|
|
}
|
|
|
|
public String getTimestamp() {
|
|
return timestamp;
|
|
}
|
|
|
|
public void setTimestamp(String timestamp) {
|
|
this.timestamp = timestamp;
|
|
}
|
|
|
|
public String getAccNumber() {
|
|
return accNumber;
|
|
}
|
|
|
|
public void setAccNumber(String accNumber) {
|
|
this.accNumber = accNumber;
|
|
}
|
|
|
|
public String getAccount() {
|
|
return account;
|
|
}
|
|
|
|
public void setAccount(String account) {
|
|
this.account = account;
|
|
}
|
|
|
|
public String getIsMain() {
|
|
return isMain;
|
|
}
|
|
|
|
public void setIsMain(String isMain) {
|
|
this.isMain = isMain;
|
|
}
|
|
|
|
public String getAccInfo() {
|
|
return accInfo;
|
|
}
|
|
|
|
public void setAccInfo(String accInfo) {
|
|
this.accInfo = accInfo;
|
|
}
|
|
|
|
public String getOpenBank() {
|
|
return openBank;
|
|
}
|
|
|
|
public void setOpenBank(String openBank) {
|
|
this.openBank = openBank;
|
|
}
|
|
|
|
public String getProvince() {
|
|
return province;
|
|
}
|
|
|
|
public void setProvince(String province) {
|
|
this.province = province;
|
|
}
|
|
|
|
public String getDistrict() {
|
|
return district;
|
|
}
|
|
|
|
public void setDistrict(String district) {
|
|
this.district = district;
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|