Helius
2022-05-27 4351e71d782741143a98f86f6648acd16689165f
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.matrix.system.shopXcx.dto;
 
import com.matrix.core.tools.DateUtil;
 
import java.util.Date;
 
public class YYDay {
 
    /**
     * 状态  0表示占位符,1可以预约,2已过期,3已选择
     */
    private Integer status;
 
    private Date time;
 
    private Integer day;
 
 
    public YYDay() {
        super();
    }
 
    public YYDay(Integer year, Integer month, Integer day) {
      this.time=new Date(year, month, day);
      this.day=day;
    }
 
    public YYDay(Date time) {
        this.time=new Date(time.getTime());
 
    }
 
    public YYDay(Date time, int j) {
        this.time=new Date(time.getTime());
        this.day=j;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public Date getTime() {
        return time;
    }
 
    public void setTime(Date time) {
        this.time = time;
    }
 
    public Integer getDay() {
        return day;
    }
 
    public void setDay(Integer day) {
        this.day = day;
    }
}