1、看板料罐车数获取;2、小时产量加班次、分钟数做活,导出功能;3、工序完成记录加入班次
parent
497e14c965
commit
d4ce34c332
@ -0,0 +1,49 @@
|
|||||||
|
package com.op.common.core.domain;
|
||||||
|
|
||||||
|
import com.op.common.core.annotation.Excel;
|
||||||
|
import com.op.common.core.web.domain.BaseEntity;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 附件对象 base_file
|
||||||
|
*
|
||||||
|
* @author Open Platform
|
||||||
|
* @date 2023-07-10
|
||||||
|
*/
|
||||||
|
public class ExcelCol extends BaseEntity {
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
private String title;//表头名称
|
||||||
|
private String field;//内容名称(与数据库传回的参数字段对应)
|
||||||
|
private int width;//单元格宽度
|
||||||
|
|
||||||
|
public ExcelCol(String title, String field, int width) {
|
||||||
|
this.title = title;
|
||||||
|
this.field = field;
|
||||||
|
this.width = width;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTitle() {
|
||||||
|
return title;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTitle(String title) {
|
||||||
|
this.title = title;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getField() {
|
||||||
|
return field;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setField(String field) {
|
||||||
|
this.field = field;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getWidth() {
|
||||||
|
return width;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWidth(int width) {
|
||||||
|
this.width = width;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,39 @@
|
|||||||
|
package com.op.mes.domain;
|
||||||
|
|
||||||
|
//班次实体类
|
||||||
|
public class MesShift {
|
||||||
|
private Integer shiftId;
|
||||||
|
private String shiftDesc;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "ProShift{" +
|
||||||
|
"shiftId=" + shiftId +
|
||||||
|
", shiftDesc='" + shiftDesc + '\'' +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getShiftId() {
|
||||||
|
return shiftId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setShiftId(Integer shiftId) {
|
||||||
|
this.shiftId = shiftId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getShiftDesc() {
|
||||||
|
return shiftDesc;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setShiftDesc(String shiftDesc) {
|
||||||
|
this.shiftDesc = shiftDesc;
|
||||||
|
}
|
||||||
|
|
||||||
|
public MesShift(Integer shiftId, String shiftDesc) {
|
||||||
|
this.shiftId = shiftId;
|
||||||
|
this.shiftDesc = shiftDesc;
|
||||||
|
}
|
||||||
|
|
||||||
|
public MesShift() {
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue