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
package com.fgkj.dto;
 
import java.io.Serializable;
import java.util.Date;
 
public class User_battmaint_check_process implements Serializable{
    private Integer num;
    private Integer usr_id;
    private String usr_name;
    private Integer task_rec_id;
    private String work_caption;
    private Date work_caption_time;
    public User_battmaint_check_process() {
        super();
        // TODO Auto-generated constructor stub
    }
    public Integer getNum() {
        return num;
    }
    public void setNum(Integer num) {
        this.num = num;
    }
    
    public Integer getUsr_id() {
        return usr_id;
    }
    public void setUsr_id(Integer usr_id) {
        this.usr_id = usr_id;
    }
    
    public String getUsr_name() {
        return usr_name;
    }
    public void setUsr_name(String usr_name) {
        this.usr_name = usr_name;
    }
    public Integer getTask_rec_id() {
        return task_rec_id;
    }
    public void setTask_rec_id(Integer task_rec_id) {
        this.task_rec_id = task_rec_id;
    }
    public String getWork_caption() {
        return work_caption;
    }
    public void setWork_caption(String work_caption) {
        this.work_caption = work_caption;
    }
    public Date getWork_caption_time() {
        return work_caption_time;
    }
    public void setWork_caption_time(Date work_caption_time) {
        this.work_caption_time = work_caption_time;
    }
    @Override
    public String toString() {
        return "User_battmaint_check_process [num=" + num + ", usr_id="
                + usr_id + ", usr_name=" + usr_name + ", task_rec_id="
                + task_rec_id + ", work_caption=" + work_caption
                + ", work_caption_time=" + work_caption_time + "]";
    }
    
    
}