生产日报表
parent
5ebb81a661
commit
959b9dbe19
@ -0,0 +1,51 @@
|
||||
package com.op.mes.domain.dto;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
public class QuantityDto {
|
||||
private Long quantityFeedbackSum;
|
||||
private BigDecimal workTime;
|
||||
private Long useMan;
|
||||
private String workorderCode;
|
||||
private String machineCode;
|
||||
|
||||
public Long getQuantityFeedbackSum() {
|
||||
return quantityFeedbackSum;
|
||||
}
|
||||
|
||||
public void setQuantityFeedbackSum(Long quantityFeedbackSum) {
|
||||
this.quantityFeedbackSum = quantityFeedbackSum;
|
||||
}
|
||||
|
||||
public BigDecimal getWorkTime() {
|
||||
return workTime;
|
||||
}
|
||||
|
||||
public void setWorkTime(BigDecimal workTime) {
|
||||
this.workTime = workTime;
|
||||
}
|
||||
|
||||
public Long getUseMan() {
|
||||
return useMan;
|
||||
}
|
||||
|
||||
public void setUseMan(Long useMan) {
|
||||
this.useMan = useMan;
|
||||
}
|
||||
|
||||
public String getWorkorderCode() {
|
||||
return workorderCode;
|
||||
}
|
||||
|
||||
public void setWorkorderCode(String workorderCode) {
|
||||
this.workorderCode = workorderCode;
|
||||
}
|
||||
|
||||
public String getMachineCode() {
|
||||
return machineCode;
|
||||
}
|
||||
|
||||
public void setMachineCode(String machineCode) {
|
||||
this.machineCode = machineCode;
|
||||
}
|
||||
}
|
@ -0,0 +1,360 @@
|
||||
package com.op.quality.domain;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.op.common.core.annotation.Excel;
|
||||
import com.op.common.core.web.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 市场反馈信息对象 qc_market_feedback
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-03-19
|
||||
*/
|
||||
public class QcMarketFeedback extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
private String recordId;
|
||||
|
||||
/**
|
||||
* 产品编码
|
||||
*/
|
||||
@Excel(name = "产品编码")
|
||||
private String productCode;
|
||||
|
||||
/**
|
||||
* 产品名称
|
||||
*/
|
||||
@Excel(name = "产品名称")
|
||||
private String productName;
|
||||
|
||||
/**
|
||||
* 市场不良类型(字典维护)
|
||||
*/
|
||||
@Excel(name = "市场不良类型(字典维护)")
|
||||
private String marketType;
|
||||
|
||||
@Excel(name = "市场不良类型名称")
|
||||
private String marketTypeName;
|
||||
|
||||
/**
|
||||
* 订单号
|
||||
*/
|
||||
@Excel(name = "订单号")
|
||||
private String orderCode;
|
||||
|
||||
/**
|
||||
* 批次号
|
||||
*/
|
||||
@Excel(name = "批次号")
|
||||
private String batchCode;
|
||||
|
||||
/**
|
||||
* 线体编码
|
||||
*/
|
||||
@Excel(name = "线体编码")
|
||||
private String lineCode;
|
||||
|
||||
/**
|
||||
* 线体名称
|
||||
*/
|
||||
@Excel(name = "线体名称")
|
||||
private String lineName;
|
||||
|
||||
/**
|
||||
* 车间编码
|
||||
*/
|
||||
@Excel(name = "车间编码")
|
||||
private String carCode;
|
||||
|
||||
/**
|
||||
* 车间名称
|
||||
*/
|
||||
@Excel(name = "车间名称")
|
||||
private String carName;
|
||||
|
||||
/**
|
||||
* 生产日期
|
||||
*/
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "生产日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date productDate;
|
||||
|
||||
/**
|
||||
* 整改单编码
|
||||
*/
|
||||
@Excel(name = "整改单编码")
|
||||
private String rectificationCode;
|
||||
|
||||
/**
|
||||
* 整改时间
|
||||
*/
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "整改时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date rectificationTime;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||
private String attr1;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||
private String attr2;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||
private String attr3;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||
private String attr4;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||||
private String factoryCode;
|
||||
|
||||
/**
|
||||
* $column.columnComment
|
||||
*/
|
||||
private String delFlag;
|
||||
|
||||
/**
|
||||
* 1导入
|
||||
*/
|
||||
@Excel(name = "1导入0输入")
|
||||
private String dataSource;
|
||||
|
||||
private String feedbackTimeStart;
|
||||
|
||||
private String feedbackTimeEnd;
|
||||
|
||||
public String getMarketTypeName() {
|
||||
return marketTypeName;
|
||||
}
|
||||
|
||||
public void setMarketTypeName(String marketTypeName) {
|
||||
this.marketTypeName = marketTypeName;
|
||||
}
|
||||
|
||||
public void setRecordId(String recordId) {
|
||||
this.recordId = recordId;
|
||||
}
|
||||
|
||||
public String getRecordId() {
|
||||
return recordId;
|
||||
}
|
||||
|
||||
public void setProductCode(String productCode) {
|
||||
this.productCode = productCode;
|
||||
}
|
||||
|
||||
public String getProductCode() {
|
||||
return productCode;
|
||||
}
|
||||
|
||||
public void setProductName(String productName) {
|
||||
this.productName = productName;
|
||||
}
|
||||
|
||||
public String getProductName() {
|
||||
return productName;
|
||||
}
|
||||
|
||||
public void setMarketType(String marketType) {
|
||||
this.marketType = marketType;
|
||||
}
|
||||
|
||||
public String getMarketType() {
|
||||
return marketType;
|
||||
}
|
||||
|
||||
public void setOrderCode(String orderCode) {
|
||||
this.orderCode = orderCode;
|
||||
}
|
||||
|
||||
public String getOrderCode() {
|
||||
return orderCode;
|
||||
}
|
||||
|
||||
public void setBatchCode(String batchCode) {
|
||||
this.batchCode = batchCode;
|
||||
}
|
||||
|
||||
public String getBatchCode() {
|
||||
return batchCode;
|
||||
}
|
||||
|
||||
public void setLineCode(String lineCode) {
|
||||
this.lineCode = lineCode;
|
||||
}
|
||||
|
||||
public String getLineCode() {
|
||||
return lineCode;
|
||||
}
|
||||
|
||||
public void setLineName(String lineName) {
|
||||
this.lineName = lineName;
|
||||
}
|
||||
|
||||
public String getLineName() {
|
||||
return lineName;
|
||||
}
|
||||
|
||||
public void setCarCode(String carCode) {
|
||||
this.carCode = carCode;
|
||||
}
|
||||
|
||||
public String getCarCode() {
|
||||
return carCode;
|
||||
}
|
||||
|
||||
public void setCarName(String carName) {
|
||||
this.carName = carName;
|
||||
}
|
||||
|
||||
public String getCarName() {
|
||||
return carName;
|
||||
}
|
||||
|
||||
public void setProductDate(Date productDate) {
|
||||
this.productDate = productDate;
|
||||
}
|
||||
|
||||
public Date getProductDate() {
|
||||
return productDate;
|
||||
}
|
||||
|
||||
public void setRectificationCode(String rectificationCode) {
|
||||
this.rectificationCode = rectificationCode;
|
||||
}
|
||||
|
||||
public String getRectificationCode() {
|
||||
return rectificationCode;
|
||||
}
|
||||
|
||||
public void setRectificationTime(Date rectificationTime) {
|
||||
this.rectificationTime = rectificationTime;
|
||||
}
|
||||
|
||||
public Date getRectificationTime() {
|
||||
return rectificationTime;
|
||||
}
|
||||
|
||||
public void setAttr1(String attr1) {
|
||||
this.attr1 = attr1;
|
||||
}
|
||||
|
||||
public String getAttr1() {
|
||||
return attr1;
|
||||
}
|
||||
|
||||
public void setAttr2(String attr2) {
|
||||
this.attr2 = attr2;
|
||||
}
|
||||
|
||||
public String getAttr2() {
|
||||
return attr2;
|
||||
}
|
||||
|
||||
public void setAttr3(String attr3) {
|
||||
this.attr3 = attr3;
|
||||
}
|
||||
|
||||
public String getAttr3() {
|
||||
return attr3;
|
||||
}
|
||||
|
||||
public void setAttr4(String attr4) {
|
||||
this.attr4 = attr4;
|
||||
}
|
||||
|
||||
public String getAttr4() {
|
||||
return attr4;
|
||||
}
|
||||
|
||||
public void setFactoryCode(String factoryCode) {
|
||||
this.factoryCode = factoryCode;
|
||||
}
|
||||
|
||||
public String getFactoryCode() {
|
||||
return factoryCode;
|
||||
}
|
||||
|
||||
public void setDelFlag(String delFlag) {
|
||||
this.delFlag = delFlag;
|
||||
}
|
||||
|
||||
public String getDelFlag() {
|
||||
return delFlag;
|
||||
}
|
||||
|
||||
public void setDataSource(String dataSource) {
|
||||
this.dataSource = dataSource;
|
||||
}
|
||||
|
||||
public String getDataSource() {
|
||||
return dataSource;
|
||||
}
|
||||
|
||||
public String getFeedbackTimeStart() {
|
||||
return feedbackTimeStart;
|
||||
}
|
||||
|
||||
public void setFeedbackTimeStart(String feedbackTimeStart) {
|
||||
this.feedbackTimeStart = feedbackTimeStart;
|
||||
}
|
||||
|
||||
public String getFeedbackTimeEnd() {
|
||||
return feedbackTimeEnd;
|
||||
}
|
||||
|
||||
public void setFeedbackTimeEnd(String feedbackTimeEnd) {
|
||||
this.feedbackTimeEnd = feedbackTimeEnd;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("recordId", getRecordId())
|
||||
.append("productCode", getProductCode())
|
||||
.append("productName", getProductName())
|
||||
.append("marketType", getMarketType())
|
||||
.append("orderCode", getOrderCode())
|
||||
.append("batchCode", getBatchCode())
|
||||
.append("lineCode", getLineCode())
|
||||
.append("lineName", getLineName())
|
||||
.append("carCode", getCarCode())
|
||||
.append("carName", getCarName())
|
||||
.append("productDate", getProductDate())
|
||||
.append("rectificationCode", getRectificationCode())
|
||||
.append("rectificationTime", getRectificationTime())
|
||||
.append("attr1", getAttr1())
|
||||
.append("attr2", getAttr2())
|
||||
.append("attr3", getAttr3())
|
||||
.append("attr4", getAttr4())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("factoryCode", getFactoryCode())
|
||||
.append("delFlag", getDelFlag())
|
||||
.append("dataSource", getDataSource())
|
||||
.toString();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue