whyclj
2020-07-22 a5729100cb1eaa3584b3a194e46e1b8b52b3ed1a
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
package com.fgkj.dto;
 
import java.io.Serializable;
import java.util.Date;
 
public class User_task_batt_test implements Serializable{
    
    private Integer num;
    private Integer task_id;
    private String task_usr_ids;
    private Integer BattGroupId;
    private Integer task_enabled;
    private Date task_exe_date;
    private Date task_exe_date1;
    private Date task_close_date;
    private Date task_notice_starttime;
    private Date task_notice_endtime;
    private Integer task_notice_count;
    private Date task_notice_latesttime;
    private Integer task_notice_master;
    private Integer test_complete;
    private Date test_completetime;
    private Date test_starttime;
    private Integer test_record_count_id;
    private String note;
    
    public User_task_batt_test() {
        super();
    }
    public Integer getNum() {
        return num;
    }
    public void setNum(Integer num) {
        this.num = num;
    }
    public Integer getTask_id() {
        return task_id;
    }
    public void setTask_id(Integer task_id) {
        this.task_id = task_id;
    }
    
    public String getTask_usr_ids() {
        return task_usr_ids;
    }
    public void setTask_usr_ids(String task_usr_ids) {
        this.task_usr_ids = task_usr_ids;
    }
    public Integer getBattGroupId() {
        return BattGroupId;
    }
    public void setBattGroupId(Integer battGroupId) {
        BattGroupId = battGroupId;
    }
    public Integer getTask_enabled() {
        return task_enabled;
    }
    public void setTask_enabled(Integer task_enabled) {
        this.task_enabled = task_enabled;
    }
    public Date getTask_exe_date() {
        return task_exe_date;
    }
    public void setTask_exe_date(Date task_exe_date) {
        this.task_exe_date = task_exe_date;
    }
    
    public Date getTask_exe_date1() {
        return task_exe_date1;
    }
    public void setTask_exe_date1(Date task_exe_date1) {
        this.task_exe_date1 = task_exe_date1;
    }
    public Date getTask_close_date() {
        return task_close_date;
    }
    public void setTask_close_date(Date task_close_date) {
        this.task_close_date = task_close_date;
    }
    public Date getTask_notice_starttime() {
        return task_notice_starttime;
    }
    public void setTask_notice_starttime(Date task_notice_starttime) {
        this.task_notice_starttime = task_notice_starttime;
    }
    public Date getTask_notice_endtime() {
        return task_notice_endtime;
    }
    public void setTask_notice_endtime(Date task_notice_endtime) {
        this.task_notice_endtime = task_notice_endtime;
    }
    public Integer getTask_notice_count() {
        return task_notice_count;
    }
    public void setTask_notice_count(Integer task_notice_count) {
        this.task_notice_count = task_notice_count;
    }
    public Date getTask_notice_latesttime() {
        return task_notice_latesttime;
    }
    public void setTask_notice_latesttime(Date task_notice_latesttime) {
        this.task_notice_latesttime = task_notice_latesttime;
    }
    public Integer getTask_notice_master() {
        return task_notice_master;
    }
    public void setTask_notice_master(Integer task_notice_master) {
        this.task_notice_master = task_notice_master;
    }
    public Integer getTest_complete() {
        return test_complete;
    }
    public void setTest_complete(Integer test_complete) {
        this.test_complete = test_complete;
    }
    public Date getTest_completetime() {
        return test_completetime;
    }
    public void setTest_completetime(Date test_completetime) {
        this.test_completetime = test_completetime;
    }
    public Date getTest_starttime() {
        return test_starttime;
    }
    public void setTest_starttime(Date test_starttime) {
        this.test_starttime = test_starttime;
    }
    public Integer getTest_record_count_id() {
        return test_record_count_id;
    }
    public void setTest_record_count_id(Integer test_record_count_id) {
        this.test_record_count_id = test_record_count_id;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    @Override
    public String toString() {
        return "User_task_batt_test [num=" + num + ", task_id=" + task_id
                + ", task_usr_ids=" + task_usr_ids + ", BattGroupId="
                + BattGroupId + ", task_enabled=" + task_enabled
                + ", task_exe_date=" + task_exe_date + ", task_exe_date1="
                + task_exe_date1 + ", task_close_date=" + task_close_date
                + ", task_notice_starttime=" + task_notice_starttime
                + ", task_notice_endtime=" + task_notice_endtime
                + ", task_notice_count=" + task_notice_count
                + ", task_notice_latesttime=" + task_notice_latesttime
                + ", task_notice_master=" + task_notice_master
                + ", test_complete=" + test_complete + ", test_completetime="
                + test_completetime + ", test_starttime=" + test_starttime
                + ", test_record_count_id=" + test_record_count_id + ", note="
                + note + "]";
    }
    
    
 
}