parent
9b80e71b7e
commit
d8bdde6d6a
@ -0,0 +1,45 @@
|
||||
package com.ruoyi.pay.domain.vo;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class ButieTypeVo {
|
||||
private Long btid;
|
||||
|
||||
private String butieName;
|
||||
|
||||
private BigDecimal money;
|
||||
|
||||
public Long getBtid() {
|
||||
return btid;
|
||||
}
|
||||
|
||||
public void setBtid(Long btid) {
|
||||
this.btid = btid;
|
||||
}
|
||||
|
||||
public String getButieName() {
|
||||
return butieName;
|
||||
}
|
||||
|
||||
public void setButieName(String butieName) {
|
||||
this.butieName = butieName;
|
||||
}
|
||||
|
||||
public BigDecimal getMoney() {
|
||||
return money;
|
||||
}
|
||||
|
||||
public void setMoney(BigDecimal money) {
|
||||
this.money = money;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "ButieTypeVo{" +
|
||||
"btid=" + btid +
|
||||
", butieName='" + butieName + '\'' +
|
||||
", money=" + money +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
|
||||
@ -0,0 +1,46 @@
|
||||
package com.ruoyi.pay.domain.vo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class ButieUpdateVo {
|
||||
/** 员工ID */
|
||||
private Long empId;
|
||||
|
||||
private String date;
|
||||
|
||||
private List<ButieTypeVo> btList;
|
||||
|
||||
public Long getEmpId() {
|
||||
return empId;
|
||||
}
|
||||
|
||||
public void setEmpId(Long empId) {
|
||||
this.empId = empId;
|
||||
}
|
||||
|
||||
public String getDate() {
|
||||
return date;
|
||||
}
|
||||
|
||||
public void setDate(String date) {
|
||||
this.date = date;
|
||||
}
|
||||
|
||||
public List<ButieTypeVo> getBtList() {
|
||||
return btList;
|
||||
}
|
||||
|
||||
public void setBtList(List<ButieTypeVo> btList) {
|
||||
this.btList = btList;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "ButieUpdateVo{" +
|
||||
"empId=" + empId +
|
||||
", date='" + date + '\'' +
|
||||
", btList=" + btList +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in new issue