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