嗨森逛服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hai-server/hai-service/src/main/java/com/hai/model/HighGoldRecModel.java

39 lines
638 B

package com.hai.model;
import com.hai.entity.HighUser;
public class HighGoldRecModel {
private HighUser highUser;
// 收入
private Long income;
// 支出
private Long expend;
public HighUser getHighUser() {
return highUser;
}
public void setHighUser(HighUser highUser) {
this.highUser = highUser;
}
public Long getIncome() {
return income;
}
public void setIncome(Long income) {
this.income = income;
}
public Long getExpend() {
return expend;
}
public void setExpend(Long expend) {
this.expend = expend;
}
}