Merge remote-tracking branch 'origin/master'
commit
4b713ab5de
@ -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,443 @@
|
||||
package com.op.mes.domain.vo;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.op.common.core.annotation.Excel;
|
||||
import com.op.common.core.web.domain.BaseEntity;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
public class MesDailyReportVo extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
// 车间
|
||||
@Excel(name = "车间编码")
|
||||
private String workshopCode;
|
||||
@Excel(name = "车间编码")
|
||||
private String workshopName;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "日期")
|
||||
private Date productDate;//工单日期
|
||||
// sap
|
||||
@Excel(name = "产线编码")
|
||||
private String sapCode;
|
||||
@Excel(name = "产线名称")
|
||||
private String sapName;
|
||||
// 设备编码
|
||||
private String equipmentCode;
|
||||
@Excel(name = "组别")
|
||||
private String equipmentName;
|
||||
// 工时
|
||||
|
||||
private BigDecimal unitWorkingHours;
|
||||
|
||||
private String workorderCodeSap;
|
||||
@Excel(name = "产品编码")
|
||||
private String productCode;//产品编码
|
||||
@Excel(name = "产品名称")
|
||||
private String productName;//产品名称
|
||||
|
||||
//组别
|
||||
private String teamCode;
|
||||
private String teamDesc;
|
||||
|
||||
@Excel(name = "品类")
|
||||
private String prodType;//分类
|
||||
@Excel(name = "组长")
|
||||
private String teamLeaderName;//组长
|
||||
//计划产量
|
||||
// 标准用人
|
||||
@Excel(name = "标准用人")
|
||||
private Long useMan;
|
||||
// 标准效率
|
||||
@Excel(name = "产线标准效率")
|
||||
private BigDecimal efficiency;
|
||||
@Excel(name = "工单号")
|
||||
private String workorderCode;
|
||||
private String workorderName;
|
||||
private String quantity;//计划产量(箱)
|
||||
@Excel(name = "规格")
|
||||
private Long spec;//规格
|
||||
@Excel(name = "单位")
|
||||
private String unit;
|
||||
@Excel(name = "计划产量")
|
||||
private Long quantitySplit;
|
||||
@Excel(name = "实际产量")
|
||||
private String quantityFeedback;//实际产量(箱)
|
||||
@Excel(name = "产量")
|
||||
private String quantityAct;// 产量(盒)
|
||||
@Excel(name = "产线标准效率")
|
||||
private String completeRate;// 订单完成率
|
||||
@Excel(name = "实际用人")
|
||||
private String manStandard;//实际用人
|
||||
@Excel(name = "标准工时")
|
||||
private String workTimeStandard;//工时-标准
|
||||
@Excel(name = "实际工时")
|
||||
private BigDecimal workTime;//工时-实际
|
||||
@Excel(name = "产线效率")
|
||||
private String productivity;//工时-产线效率
|
||||
@Excel(name = "总工时")
|
||||
private String totalWorkTime;
|
||||
@Excel(name = "标准人均效率")
|
||||
private String manAvgStandard;//人均效率-标准
|
||||
@Excel(name = "实际人均效率")
|
||||
private String manAvgActual;//人均效率-实际
|
||||
@Excel(name = "人均效率达成率")
|
||||
private String manAvgDo;//人均效率-达成
|
||||
private String actManHour;//实际人工时
|
||||
|
||||
private String productDateStart;//工单日期开始
|
||||
private String productDateEnd;//工单日期结束
|
||||
private String productStartDate;
|
||||
private String productEndDate;
|
||||
private String workCenter;
|
||||
|
||||
private String equipmentTypeCode;
|
||||
|
||||
private String machineCode;
|
||||
@Excel(name = "工厂编码")
|
||||
private String factoryCode;
|
||||
|
||||
|
||||
public String getProductDateStart() {
|
||||
return productDateStart;
|
||||
}
|
||||
public void setProductDateStart(String productDateStart) {
|
||||
this.productDateStart = productDateStart;
|
||||
}
|
||||
|
||||
public String getProductDateEnd() {
|
||||
return productDateEnd;
|
||||
}
|
||||
|
||||
public void setProductDateEnd(String productDateEnd) {
|
||||
this.productDateEnd = productDateEnd;
|
||||
}
|
||||
|
||||
public String getQuantityAct() {
|
||||
return quantityAct;
|
||||
}
|
||||
|
||||
public void setQuantityAct(String quantityAct) {
|
||||
this.quantityAct = quantityAct;
|
||||
}
|
||||
|
||||
public String getCompleteRate() {
|
||||
return completeRate;
|
||||
}
|
||||
|
||||
public void setCompleteRate(String completeRate) {
|
||||
this.completeRate = completeRate;
|
||||
}
|
||||
|
||||
public String getProductivity() {
|
||||
return productivity;
|
||||
}
|
||||
|
||||
public void setProductivity(String productivity) {
|
||||
this.productivity = productivity;
|
||||
}
|
||||
|
||||
|
||||
public String getManAvgActual() {
|
||||
return manAvgActual;
|
||||
}
|
||||
|
||||
public void setManAvgActual(String manAvgActual) {
|
||||
this.manAvgActual = manAvgActual;
|
||||
}
|
||||
|
||||
public String getManAvgDo() {
|
||||
return manAvgDo;
|
||||
}
|
||||
|
||||
public void setManAvgDo(String manAvgDo) {
|
||||
this.manAvgDo = manAvgDo;
|
||||
}
|
||||
|
||||
public String getActManHour() {
|
||||
return actManHour;
|
||||
}
|
||||
|
||||
public void setActManHour(String actManHour) {
|
||||
this.actManHour = actManHour;
|
||||
}
|
||||
|
||||
public String getProductStartDate() {
|
||||
return productStartDate;
|
||||
}
|
||||
|
||||
public void setProductStartDate(String productStartDate) {
|
||||
this.productStartDate = productStartDate;
|
||||
}
|
||||
|
||||
public String getProductEndDate() {
|
||||
return productEndDate;
|
||||
}
|
||||
|
||||
public void setProductEndDate(String productEndDate) {
|
||||
this.productEndDate = productEndDate;
|
||||
}
|
||||
|
||||
public String getTeamCode() {
|
||||
return teamCode;
|
||||
}
|
||||
|
||||
public void setTeamCode(String teamCode) {
|
||||
this.teamCode = teamCode;
|
||||
}
|
||||
|
||||
public String getTeamDesc() {
|
||||
return teamDesc;
|
||||
}
|
||||
|
||||
public void setTeamDesc(String teamDesc) {
|
||||
this.teamDesc = teamDesc;
|
||||
}
|
||||
|
||||
public String getProdType() {
|
||||
return prodType;
|
||||
}
|
||||
|
||||
public void setProdType(String prodType) {
|
||||
this.prodType = prodType;
|
||||
}
|
||||
|
||||
public String getTeamLeaderName() {
|
||||
return teamLeaderName;
|
||||
}
|
||||
|
||||
public void setTeamLeaderName(String teamLeaderName) {
|
||||
this.teamLeaderName = teamLeaderName;
|
||||
}
|
||||
|
||||
public String getProductCode() {
|
||||
return productCode;
|
||||
}
|
||||
|
||||
public void setProductCode(String productCode) {
|
||||
this.productCode = productCode;
|
||||
}
|
||||
|
||||
public Long getSpec() {
|
||||
return spec;
|
||||
}
|
||||
|
||||
public void setSpec(Long spec) {
|
||||
this.spec = spec;
|
||||
}
|
||||
|
||||
public String getProductName() {
|
||||
return productName;
|
||||
}
|
||||
|
||||
public void setProductName(String productName) {
|
||||
this.productName = productName;
|
||||
}
|
||||
|
||||
public String getUnit() {
|
||||
return unit;
|
||||
}
|
||||
|
||||
public void setUnit(String unit) {
|
||||
this.unit = unit;
|
||||
}
|
||||
|
||||
public String getQuantity() {
|
||||
return quantity;
|
||||
}
|
||||
|
||||
public void setQuantity(String quantity) {
|
||||
this.quantity = quantity;
|
||||
}
|
||||
|
||||
public String getQuantityFeedback() {
|
||||
return quantityFeedback;
|
||||
}
|
||||
public void setQuantityFeedback(String quantityFeedback) {
|
||||
this.quantityFeedback = quantityFeedback;
|
||||
}
|
||||
|
||||
public BigDecimal getWorkTime() {
|
||||
return workTime;
|
||||
}
|
||||
|
||||
public void setWorkTime(BigDecimal workTime) {
|
||||
this.workTime = workTime;
|
||||
}
|
||||
|
||||
public String getManStandard() {
|
||||
return manStandard;
|
||||
}
|
||||
|
||||
public void setManStandard(String manStandard) {
|
||||
this.manStandard = manStandard;
|
||||
}
|
||||
|
||||
public String getWorkTimeStandard() {
|
||||
return workTimeStandard;
|
||||
}
|
||||
|
||||
public void setWorkTimeStandard(String workTimeStandard) {
|
||||
this.workTimeStandard = workTimeStandard;
|
||||
}
|
||||
|
||||
public String getManAvgStandard() {
|
||||
return manAvgStandard;
|
||||
}
|
||||
|
||||
public void setManAvgStandard(String manAvgStandard) {
|
||||
this.manAvgStandard = manAvgStandard;
|
||||
}
|
||||
public Date getProductDate() {
|
||||
return productDate;
|
||||
}
|
||||
|
||||
public void setProductDate(Date productDate) {
|
||||
this.productDate = productDate;
|
||||
}
|
||||
|
||||
public String getWorkCenter() {
|
||||
return workCenter;
|
||||
}
|
||||
|
||||
public void setWorkCenter(String workCenter) {
|
||||
this.workCenter = workCenter;
|
||||
}
|
||||
|
||||
public String getEquipmentTypeCode() {
|
||||
return equipmentTypeCode;
|
||||
}
|
||||
|
||||
public void setEquipmentTypeCode(String equipmentTypeCode) {
|
||||
this.equipmentTypeCode = equipmentTypeCode;
|
||||
}
|
||||
|
||||
public String getWorkshopCode() {
|
||||
return workshopCode;
|
||||
}
|
||||
|
||||
public void setWorkshopCode(String workshopCode) {
|
||||
this.workshopCode = workshopCode;
|
||||
}
|
||||
|
||||
public String getWorkshopName() {
|
||||
return workshopName;
|
||||
}
|
||||
|
||||
public void setWorkshopName(String workshopName) {
|
||||
this.workshopName = workshopName;
|
||||
}
|
||||
|
||||
public String getSapCode() {
|
||||
return sapCode;
|
||||
}
|
||||
|
||||
public void setSapCode(String sapCode) {
|
||||
this.sapCode = sapCode;
|
||||
}
|
||||
|
||||
public String getSapName() {
|
||||
return sapName;
|
||||
}
|
||||
|
||||
public void setSapName(String sapName) {
|
||||
this.sapName = sapName;
|
||||
}
|
||||
|
||||
public String getEquipmentCode() {
|
||||
return equipmentCode;
|
||||
}
|
||||
|
||||
public void setEquipmentCode(String equipmentCode) {
|
||||
this.equipmentCode = equipmentCode;
|
||||
}
|
||||
|
||||
public String getEquipmentName() {
|
||||
return equipmentName;
|
||||
}
|
||||
|
||||
public void setEquipmentName(String equipmentName) {
|
||||
this.equipmentName = equipmentName;
|
||||
}
|
||||
|
||||
public BigDecimal getUnitWorkingHours() {
|
||||
return unitWorkingHours;
|
||||
}
|
||||
|
||||
public void setUnitWorkingHours(BigDecimal unitWorkingHours) {
|
||||
this.unitWorkingHours = unitWorkingHours;
|
||||
}
|
||||
|
||||
public String getWorkorderCodeSap() {
|
||||
return workorderCodeSap;
|
||||
}
|
||||
|
||||
public void setWorkorderCodeSap(String workorderCodeSap) {
|
||||
this.workorderCodeSap = workorderCodeSap;
|
||||
}
|
||||
|
||||
public Long getQuantitySplit() {
|
||||
return quantitySplit;
|
||||
}
|
||||
|
||||
public void setQuantitySplit(Long quantitySplit) {
|
||||
this.quantitySplit = quantitySplit;
|
||||
}
|
||||
|
||||
public Long getUseMan() {
|
||||
return useMan;
|
||||
}
|
||||
|
||||
public void setUseMan(Long useMan) {
|
||||
this.useMan = useMan;
|
||||
}
|
||||
|
||||
public BigDecimal getEfficiency() {
|
||||
return efficiency;
|
||||
}
|
||||
|
||||
public void setEfficiency(BigDecimal efficiency) {
|
||||
this.efficiency = efficiency;
|
||||
}
|
||||
|
||||
public String getWorkorderCode() {
|
||||
return workorderCode;
|
||||
}
|
||||
|
||||
public void setWorkorderCode(String workorderCode) {
|
||||
this.workorderCode = workorderCode;
|
||||
}
|
||||
|
||||
public String getWorkorderName() {
|
||||
return workorderName;
|
||||
}
|
||||
|
||||
public void setWorkorderName(String workorderName) {
|
||||
this.workorderName = workorderName;
|
||||
}
|
||||
|
||||
public String getMachineCode() {
|
||||
return machineCode;
|
||||
}
|
||||
|
||||
public void setMachineCode(String machineCode) {
|
||||
this.machineCode = machineCode;
|
||||
}
|
||||
|
||||
public String getTotalWorkTime() {
|
||||
return totalWorkTime;
|
||||
}
|
||||
|
||||
public void setTotalWorkTime(String totalWorkTime) {
|
||||
this.totalWorkTime = totalWorkTime;
|
||||
}
|
||||
|
||||
public String getFactoryCode() {
|
||||
return factoryCode;
|
||||
}
|
||||
|
||||
public void setFactoryCode(String factoryCode) {
|
||||
this.factoryCode = factoryCode;
|
||||
}
|
||||
}
|
@ -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