package com.fgkj.dto;
|
|
import org.apache.ibatis.type.Alias;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
@Alias("Batt_maint_process")
|
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;
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
|
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 + "]";
|
}
|
|
|
|
}
|