2 changed files with 0 additions and 230 deletions
@ -1,161 +0,0 @@
|
||||
package demo.weihuijia.model; |
||||
|
||||
/** |
||||
* @author Administrator |
||||
* 账户表 |
||||
*/ |
||||
public class AccountTab { |
||||
|
||||
/** |
||||
* 账号(卡号) |
||||
*/ |
||||
private String cardNo; |
||||
|
||||
/** |
||||
* 客户号 |
||||
*/ |
||||
private String customNo; |
||||
|
||||
/** |
||||
* 证件类型 |
||||
*/ |
||||
private String idType; |
||||
/** |
||||
* 证件号码 |
||||
*/ |
||||
private String idNo; |
||||
/** |
||||
* 开户机构 |
||||
*/ |
||||
private String organiNm; |
||||
/** |
||||
* 开户日期 |
||||
*/ |
||||
private String accountDa; |
||||
|
||||
/** |
||||
* 开户员工(员工号) |
||||
*/ |
||||
private String accstaff; |
||||
|
||||
/** |
||||
* 余额 |
||||
*/ |
||||
private Double balance; |
||||
|
||||
/** |
||||
* 类型(1个人、2企业) |
||||
*/ |
||||
private String acctype; |
||||
|
||||
/** |
||||
* 存款类型 1存 2取 |
||||
*/ |
||||
private String depositTy; |
||||
|
||||
/** |
||||
* 账户状态 1 正常 2 销户 |
||||
*/ |
||||
private String status; |
||||
|
||||
/** |
||||
* 密码 |
||||
*/ |
||||
private String password; |
||||
|
||||
public String getCardNo() { |
||||
return cardNo; |
||||
} |
||||
|
||||
public void setCardNo(String cardNo) { |
||||
this.cardNo = cardNo; |
||||
} |
||||
|
||||
public String getCustomNo() { |
||||
return customNo; |
||||
} |
||||
|
||||
public void setCustomNo(String customNo) { |
||||
this.customNo = customNo; |
||||
} |
||||
|
||||
public String getIdType() { |
||||
return idType; |
||||
} |
||||
|
||||
public void setIdType(String idType) { |
||||
this.idType = idType; |
||||
} |
||||
|
||||
public String getIdNo() { |
||||
return idNo; |
||||
} |
||||
|
||||
public void setIdNo(String idNo) { |
||||
this.idNo = idNo; |
||||
} |
||||
|
||||
public String getOrganiNm() { |
||||
return organiNm; |
||||
} |
||||
|
||||
public void setOrganiNm(String organiNm) { |
||||
this.organiNm = organiNm; |
||||
} |
||||
|
||||
public String getAccountDa() { |
||||
return accountDa; |
||||
} |
||||
|
||||
public void setAccountDa(String accountDa) { |
||||
this.accountDa = accountDa; |
||||
} |
||||
|
||||
public String getAccstaff() { |
||||
return accstaff; |
||||
} |
||||
|
||||
public void setAccstaff(String accstaff) { |
||||
this.accstaff = accstaff; |
||||
} |
||||
|
||||
public Double getBalance() { |
||||
return balance; |
||||
} |
||||
|
||||
public void setBalance(Double balance) { |
||||
this.balance = balance; |
||||
} |
||||
|
||||
public String getAcctype() { |
||||
return acctype; |
||||
} |
||||
|
||||
public void setAcctype(String acctype) { |
||||
this.acctype = acctype; |
||||
} |
||||
|
||||
public String getDepositTy() { |
||||
return depositTy; |
||||
} |
||||
|
||||
public void setDepositTy(String depositTy) { |
||||
this.depositTy = depositTy; |
||||
} |
||||
|
||||
public String getStatus() { |
||||
return status; |
||||
} |
||||
|
||||
public void setStatus(String status) { |
||||
this.status = status; |
||||
} |
||||
|
||||
public String getPassword() { |
||||
return password; |
||||
} |
||||
|
||||
public void setPassword(String password) { |
||||
this.password = password; |
||||
} |
||||
} |
@ -1,69 +0,0 @@
|
||||
package demo.weihuijia.model; |
||||
|
||||
|
||||
/** |
||||
* @author Administrator |
||||
*/ |
||||
public class WithdrawMoneyDTO { |
||||
|
||||
/** |
||||
* 账号 |
||||
*/ |
||||
private String cardNo; |
||||
/** |
||||
* 金额 |
||||
*/ |
||||
private Double money; |
||||
/** |
||||
* 存取 1存 2取 |
||||
*/ |
||||
private String serviceTy; |
||||
/** |
||||
* 员工编号 |
||||
*/ |
||||
private String staffNo; |
||||
/** |
||||
* 机构号 |
||||
*/ |
||||
private String organiNm; |
||||
|
||||
public String getCardNo() { |
||||
return cardNo; |
||||
} |
||||
|
||||
public void setCardNo(String cardNo) { |
||||
this.cardNo = cardNo; |
||||
} |
||||
|
||||
public Double getMoney() { |
||||
return money; |
||||
} |
||||
|
||||
public void setMoney(Double money) { |
||||
this.money = money; |
||||
} |
||||
|
||||
public String getServiceTy() { |
||||
return serviceTy; |
||||
} |
||||
|
||||
public void setServiceTy(String serviceTy) { |
||||
this.serviceTy = serviceTy; |
||||
} |
||||
|
||||
public String getStaffNo() { |
||||
return staffNo; |
||||
} |
||||
|
||||
public void setStaffNo(String staffNo) { |
||||
this.staffNo = staffNo; |
||||
} |
||||
|
||||
public String getOrganiNm() { |
||||
return organiNm; |
||||
} |
||||
|
||||
public void setOrganiNm(String organiNm) { |
||||
this.organiNm = organiNm; |
||||
} |
||||
} |
Loading…
Reference in new issue