whyclj
2019-10-29 1c0469e45346d464e0c5672ee68f9ecd4fb6be7c
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
package com.fgkj.dto;
 
import java.io.Serializable;
import java.util.Date;
 
public class Batt_maint_process implements Serializable{
    
    private Integer num;
    private Integer batt_maint_rec_id;
    private Integer usr_id;
    private String uname;
    private String work_caption;
    private Date work_caption_time;
    
    public Batt_maint_process() {
        super();
        // TODO Auto-generated constructor stub
    }
    public Integer getNum() {
        return num;
    }
    public void setNum(Integer num) {
        this.num = num;
    }
    public Integer getBatt_maint_rec_id() {
        return batt_maint_rec_id;
    }
    public void setBatt_maint_rec_id(Integer batt_maint_rec_id) {
        this.batt_maint_rec_id = batt_maint_rec_id;
    }
    public Integer getUsr_id() {
        return usr_id;
    }
    public void setUsr_id(Integer usr_id) {
        this.usr_id = usr_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;
    }
    
    public String getUname() {
        return uname;
    }
    public void setUname(String uname) {
        this.uname = uname;
    }
    @Override
    public String toString() {
        return "Batt_maint_process [num=" + num + ", batt_maint_rec_id="
                + batt_maint_rec_id + ", usr_id=" + usr_id + ", uname=" + uname
                + ", work_caption=" + work_caption + ", work_caption_time="
                + work_caption_time + "]";
    }
    
    
 
}