package com.shlanbao.tzsc.base.mapping;
|
|
import java.util.Date;
|
|
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
|
|
/**
|
* SchCalendar entity. @author MyEclipse Persistence Tools
|
*/
|
|
public class EqmFixedStoptime implements java.io.Serializable {
|
|
private String id;
|
private String shift;
|
private String team;
|
/**
|
* type:
|
* 1、生产准备时间:每月第一天开始生产前的准备时间。
|
2、交接班及日常保养:40分钟。
|
3、停机用餐:白班30分钟;晚班无。
|
4、换牌时间:40分钟。
|
5、轮保或周保时间:尚未确定。
|
6、非作业停机时间:生产计划期内设备不作业的时间,如晚上一点至早上八点。
|
7、其它剔除时间:停水、电、气、汽以及烟丝断料,由调度员决定是否记录时间。
|
*
|
* */
|
private String type;
|
@DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
|
private Date date_;
|
private Double times;
|
private String unit;
|
@DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
|
private Date createTime;
|
private Long del;
|
|
|
public Long getDel() {
|
return del;
|
}
|
public void setDel(Long del) {
|
this.del = del;
|
}
|
public String getId() {
|
return id;
|
}
|
public void setId(String id) {
|
this.id = id;
|
}
|
public Date getDate_() {
|
return date_;
|
}
|
public void setDate_(Date date_) {
|
this.date_ = date_;
|
}
|
public String getShift() {
|
return shift;
|
}
|
public void setShift(String shift) {
|
this.shift = shift;
|
}
|
public String getTeam() {
|
return team;
|
}
|
public void setTeam(String team) {
|
this.team = team;
|
}
|
public String getType() {
|
return type;
|
}
|
public void setType(String type) {
|
this.type = type;
|
}
|
public Double getTimes() {
|
return times;
|
}
|
public void setTimes(Double times) {
|
this.times = times;
|
}
|
public String getUnit() {
|
return unit;
|
}
|
public void setUnit(String unit) {
|
this.unit = unit;
|
}
|
public Date getCreateTime() {
|
return createTime;
|
}
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
|
|
|
|
}
|