admin
2022-04-07 e1cc0d03fadc2d251d36c0dc3650f75e830d5363
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.yeshi.makemoney.app.service.query.money;
 
import com.yeshi.makemoney.app.service.query.BaseQuery;
 
public class UserMoneyRecordQuery extends BaseQuery {
    private Long uid;
    private Boolean add;
 
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public Boolean getAdd() {
        return add;
    }
 
    public void setAdd(Boolean add) {
        this.add = add;
    }
}