package com.shlanbao.tzsc.base.mapping;
|
|
import java.io.Serializable;
|
import java.util.ArrayList;
|
import java.util.Date;
|
import java.util.List;
|
|
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
|
|
/**
|
* 停机剔除
|
* @author 彭建安
|
* @date 2018年8月20日
|
*
|
*/
|
public class EqpStopMaintain implements Serializable{
|
private String id;
|
@DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
|
private Date actualDate; //日期
|
private MdTeam mdteam;//班组
|
private MdEquipment mdeqp;//机台
|
private MdEqpCategory mdca;
|
private String content;//停机内容
|
private Double num;//停机时间(分)
|
private String free; //备注
|
private String free1; //备用1
|
private String free2; //备用2
|
private MdShift mdShift;
|
public String getId() {
|
return id;
|
}
|
public void setId(String id) {
|
this.id = id;
|
}
|
public Date getActualDate() {
|
return actualDate;
|
}
|
public void setActualDate(Date actualDate) {
|
this.actualDate = actualDate;
|
}
|
|
|
public MdTeam getMdteam() {
|
return mdteam;
|
}
|
public void setMdteam(MdTeam mdteam) {
|
this.mdteam = mdteam;
|
}
|
public MdEqpCategory getMdca() {
|
return mdca;
|
}
|
public void setMdca(MdEqpCategory mdca) {
|
this.mdca = mdca;
|
}
|
public MdEquipment getMdeqp() {
|
return mdeqp;
|
}
|
public void setMdeqp(MdEquipment mdeqp) {
|
this.mdeqp = mdeqp;
|
}
|
public String getContent() {
|
return content;
|
}
|
public void setContent(String content) {
|
this.content = content;
|
}
|
public String getFree() {
|
return free;
|
}
|
public void setFree(String free) {
|
this.free = free;
|
}
|
public String getFree1() {
|
return free1;
|
}
|
public void setFree1(String free1) {
|
this.free1 = free1;
|
}
|
public String getFree2() {
|
return free2;
|
}
|
public void setFree2(String free2) {
|
this.free2 = free2;
|
}
|
public Double getNum() {
|
return num;
|
}
|
public void setNum(Double num) {
|
this.num = num;
|
}
|
|
public MdShift getMdShift() {
|
return mdShift;
|
}
|
|
public void setMdShift(MdShift mdShift) {
|
this.mdShift = mdShift;
|
}
|
}
|