📄 accountform.java
字号:
package cn.com.sdcncsi.lunch.balance.form;
public class AccountForm {
private Integer count; //帐单数量
private Double paid; //已付款
private Double nopaid; //未付款
private Double realPaid; //实际应付款
private Integer id; //用户id
private String userName; //用户名
/**
* @return the count
*/
public Integer getCount() {
return count;
}
/**
* @param count the count to set
*/
public void setCount(Integer count) {
this.count = count;
}
/**
* @return the paid
*/
public Double getPaid() {
return paid;
}
/**
* @param paid the paid to set
*/
public void setPaid(Double paid) {
this.paid = paid;
}
/**
* @return the nopaid
*/
public Double getNopaid() {
return nopaid;
}
/**
* @param nopaid the nopaid to set
*/
public void setNopaid(Double nopaid) {
this.nopaid = nopaid;
}
/**
* @return the realPaid
*/
public Double getRealPaid() {
return realPaid;
}
/**
* @param realPaid the realPaid to set
*/
public void setRealPaid(Double realPaid) {
this.realPaid = realPaid;
}
/**
* @return the id
*/
public Integer getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(Integer id) {
this.id = id;
}
/**
* @return the userName
*/
public String getUserName() {
return userName;
}
/**
* @param userName the userName to set
*/
public void setUserName(String userName) {
this.userName = userName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -