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 + "]";
|
}
|
|
|
|
}
|