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
package com.fgkj.dto;
 
import java.io.Serializable;
import java.util.Date;
 
public class BattInf_Rebuild implements Serializable{
     private int  num ;
     private String old_stationname ;
     private String old_battgroupname ;
     private String old_battproducer ;
     private String old_stationid ;
     private int old_battgroupid ;
     private int old_monum ;
     private String new_stationname ;
     private String new_battgroupname ;
     private String new_battproducer ;
     private String new_stationid ;
     private int new_battgroupid ;
     private int new_monum ;
     private Date rebuild_time;
     private int rebuild_uid ;
     private String rebuild_address ;
     private int  rebuild_clear_type;
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    public String getOld_stationname() {
        return old_stationname;
    }
    public void setOld_stationname(String old_stationname) {
        this.old_stationname = old_stationname;
    }
    public String getOld_battgroupname() {
        return old_battgroupname;
    }
    public void setOld_battgroupname(String old_battgroupname) {
        this.old_battgroupname = old_battgroupname;
    }
    public String getOld_battproducer() {
        return old_battproducer;
    }
    public void setOld_battproducer(String old_battproducer) {
        this.old_battproducer = old_battproducer;
    }
    public String getOld_stationid() {
        return old_stationid;
    }
    public void setOld_stationid(String old_stationid) {
        this.old_stationid = old_stationid;
    }
    public int getOld_battgroupid() {
        return old_battgroupid;
    }
    public void setOld_battgroupid(int old_battgroupid) {
        this.old_battgroupid = old_battgroupid;
    }
    public int getOld_monum() {
        return old_monum;
    }
    public void setOld_monum(int old_monum) {
        this.old_monum = old_monum;
    }
    public String getNew_stationname() {
        return new_stationname;
    }
    public void setNew_stationname(String new_stationname) {
        this.new_stationname = new_stationname;
    }
    public String getNew_battgroupname() {
        return new_battgroupname;
    }
    public void setNew_battgroupname(String new_battgroupname) {
        this.new_battgroupname = new_battgroupname;
    }
    public String getNew_battproducer() {
        return new_battproducer;
    }
    public void setNew_battproducer(String new_battproducer) {
        this.new_battproducer = new_battproducer;
    }
    public String getNew_stationid() {
        return new_stationid;
    }
    public void setNew_stationid(String new_stationid) {
        this.new_stationid = new_stationid;
    }
    public int getNew_battgroupid() {
        return new_battgroupid;
    }
    public void setNew_battgroupid(int new_battgroupid) {
        this.new_battgroupid = new_battgroupid;
    }
    public int getNew_monum() {
        return new_monum;
    }
    public void setNew_monum(int new_monum) {
        this.new_monum = new_monum;
    }
    public Date getRebuild_time() {
        return rebuild_time;
    }
    public void setRebuild_time(Date rebuild_time) {
        this.rebuild_time = rebuild_time;
    }
    public int getRebuild_uid() {
        return rebuild_uid;
    }
    public void setRebuild_uid(int rebuild_uid) {
        this.rebuild_uid = rebuild_uid;
    }
    public String getRebuild_address() {
        return rebuild_address;
    }
    public void setRebuild_address(String rebuild_address) {
        this.rebuild_address = rebuild_address;
    }
    public int getRebuild_clear_type() {
        return rebuild_clear_type;
    }
    public void setRebuild_clear_type(int rebuild_clear_type) {
        this.rebuild_clear_type = rebuild_clear_type;
    }
    @Override
    public String toString() {
        return "BattInf_Rebuild [num=" + num + ", old_stationname="
                + old_stationname + ", old_battgroupname=" + old_battgroupname
                + ", old_battproducer=" + old_battproducer + ", old_stationid="
                + old_stationid + ", old_battgroupid=" + old_battgroupid
                + ", old_monum=" + old_monum + ", new_stationname="
                + new_stationname + ", new_battgroupname=" + new_battgroupname
                + ", new_battproducer=" + new_battproducer + ", new_stationid="
                + new_stationid + ", new_battgroupid=" + new_battgroupid
                + ", new_monum=" + new_monum + ", rebuild_time=" + rebuild_time
                + ", rebuild_uid=" + rebuild_uid + ", rebuild_address="
                + rebuild_address + ", rebuild_clear_type="
                + rebuild_clear_type + "]";
    }
    
     
     
}