admin
2022-04-02 87532065ba0c304817c31628ebb1000f4e308f12
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
26
27
28
29
30
31
32
33
34
35
36
package com.yeshi.makemoney.app.service.query.goldcorn;
 
import com.yeshi.makemoney.app.entity.goldcorn.GoldCornGetType;
 
public class GoldCornGetPriceQuery {
 
    private GoldCornGetType type;
 
    private String startTime;
 
    private String endTime;
 
    public GoldCornGetType getType() {
        return type;
    }
 
    public void setType(GoldCornGetType type) {
        this.type = type;
    }
 
    public String getStartTime() {
        return startTime;
    }
 
    public void setStartTime(String startTime) {
        this.startTime = startTime;
    }
 
    public String getEndTime() {
        return endTime;
    }
 
    public void setEndTime(String endTime) {
        this.endTime = endTime;
    }
}