whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package com.fgkj.dto;
 
import org.apache.ibatis.type.Alias;
 
import java.io.Serializable;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
@Alias("Avoid_plan")
public class Avoid_plan implements Serializable{
    private int num;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
    private Date start_time;
    private int start_month;
    private int start_day;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
    private Date stop_time;
    private int stop_month;
    private int stop_day;
    private String note;
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    public Date getStart_time() {
        return start_time;
    }
    public void setStart_time(Date start_time) {
        this.start_time = start_time;
    }
    public int getStart_month() {
        return start_month;
    }
    public void setStart_month(int start_month) {
        this.start_month = start_month;
    }
    public int getStart_day() {
        return start_day;
    }
    public void setStart_day(int start_day) {
        this.start_day = start_day;
    }
    public Date getStop_time() {
        return stop_time;
    }
    public void setStop_time(Date stop_time) {
        this.stop_time = stop_time;
    }
    public int getStop_month() {
        return stop_month;
    }
    public void setStop_month(int stop_month) {
        this.stop_month = stop_month;
    }
    public int getStop_day() {
        return stop_day;
    }
    public void setStop_day(int stop_day) {
        this.stop_day = stop_day;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    @Override
    public String toString() {
        return "Avoid_plan [num=" + num + ", start_time=" + start_time
                + ", start_month=" + start_month + ", start_day=" + start_day
                + ", stop_time=" + stop_time + ", stop_month=" + stop_month
                + ", stop_day=" + stop_day + ", note=" + note + "]";
    }
    
    
    
}