12345678910111213141516171819202122232425262728293031323334353637 |
- package com.mtgg.bean;
- import java.io.Serializable;
- public class PayLogDTO implements Serializable {
- private static final long serialVersionUID = -3780055231427704994L;
- private Integer totalFee;
- private String account;
- private String date;
- public Integer getTotalFee() {
- return totalFee;
- }
- public void setTotalFee(Integer totalFee) {
- this.totalFee = totalFee;
- }
- public String getAccount() {
- return account;
- }
- public void setAccount(String account) {
- this.account = account;
- }
- public String getDate() {
- return date;
- }
- public void setDate(String date) {
- this.date = date;
- }
- }
|