|
@@ -1,22 +1,19 @@
|
|
|
package org.jeecg.modules.actualControl.heatsActuals.entity;
|
|
|
|
|
|
-import java.io.Serializable;
|
|
|
-import java.io.UnsupportedEncodingException;
|
|
|
-import java.util.Date;
|
|
|
-import java.math.BigDecimal;
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
|
-import lombok.Data;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
-import org.springframework.format.annotation.DateTimeFormat;
|
|
|
-import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
-import org.jeecg.common.aspect.annotation.Dict;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
import lombok.experimental.Accessors;
|
|
|
+import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* @Description: 炉次实绩
|
|
@@ -28,6 +25,7 @@ import lombok.experimental.Accessors;
|
|
|
@Accessors(chain = true)
|
|
|
@EqualsAndHashCode(callSuper = false)
|
|
|
@ApiModel(value="heats_actuals对象", description="炉次实绩")
|
|
|
+@Data
|
|
|
public class HeatsActuals implements Serializable {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
@@ -114,320 +112,9 @@ public class HeatsActuals implements Serializable {
|
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
@ApiModelProperty(value = "最后切割时间",required = true)
|
|
|
private Date lastCutTime;
|
|
|
- /**定尺1*/
|
|
|
- @Excel(name = "定尺1", width = 15)
|
|
|
- @ApiModelProperty(value = "定尺1",required = true)
|
|
|
- private String lengthOne;
|
|
|
- /**定尺1*/
|
|
|
- @Excel(name = "定尺1-支数", width = 15)
|
|
|
- @ApiModelProperty(value = "定尺1-支数",required = true)
|
|
|
- private String lengthOneSum;
|
|
|
- /**定尺2*/
|
|
|
- @Excel(name = "定尺2", width = 15)
|
|
|
- @ApiModelProperty(value = "定尺2",required = true)
|
|
|
- private String lengthTwo;
|
|
|
- /**定尺2-支数*/
|
|
|
- @Excel(name = "定尺2-支数", width = 15)
|
|
|
- @ApiModelProperty(value = "定尺2-支数",required = true)
|
|
|
- private String lengthTwoSum;
|
|
|
- /**定尺3*/
|
|
|
- @Excel(name = "定尺3", width = 15)
|
|
|
- @ApiModelProperty(value = "定尺3",required = true)
|
|
|
- private String lengthThree;
|
|
|
- /**定尺3-支数*/
|
|
|
- @Excel(name = "定尺3-支数", width = 15)
|
|
|
- @ApiModelProperty(value = "定尺3-支数",required = true)
|
|
|
- private String lengthThreeSum;
|
|
|
- /**定尺4*/
|
|
|
- @Excel(name = "定尺4", width = 15)
|
|
|
- @ApiModelProperty(value = "定尺4",required = true)
|
|
|
- private String lengthFour;
|
|
|
- /**定尺4-支数*/
|
|
|
- @Excel(name = "定尺4-支数", width = 15)
|
|
|
- @ApiModelProperty(value = "定尺4-支数",required = true)
|
|
|
- private String lengthFourSum;
|
|
|
- /**定尺5*/
|
|
|
- @Excel(name = "定尺5", width = 15)
|
|
|
- @ApiModelProperty(value = "定尺5",required = true)
|
|
|
- private String lengthFive;
|
|
|
- /**定尺5-支数*/
|
|
|
- @Excel(name = "定尺5-支数", width = 15)
|
|
|
- @ApiModelProperty(value = "定尺5-支数",required = true)
|
|
|
- private String lengthFiveSum;
|
|
|
- /**定尺6*/
|
|
|
- @Excel(name = "定尺6", width = 15)
|
|
|
- @ApiModelProperty(value = "定尺6",required = true)
|
|
|
- private String lengthSix;
|
|
|
- /**定尺1-支数*/
|
|
|
- @Excel(name = "定尺6-支数", width = 15)
|
|
|
- @ApiModelProperty(value = "定尺6-支数",required = true)
|
|
|
- private String lengthSixSum;
|
|
|
/**编辑条件*/
|
|
|
@Excel(name = "编辑条件", width = 15)
|
|
|
@ApiModelProperty(value = "编辑条件",required = true)
|
|
|
private String optype;
|
|
|
|
|
|
-
|
|
|
- public HeatsActuals() {
|
|
|
- }
|
|
|
-
|
|
|
- public static long getSerialVersionUID() {
|
|
|
- return serialVersionUID;
|
|
|
- }
|
|
|
-
|
|
|
- public String getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(String id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCreateBy() {
|
|
|
- return createBy;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreateBy(String createBy) {
|
|
|
- this.createBy = createBy;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getCreateTime() {
|
|
|
- return createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreateTime(Date createTime) {
|
|
|
- this.createTime = createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public String getUpdateBy() {
|
|
|
- return updateBy;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUpdateBy(String updateBy) {
|
|
|
- this.updateBy = updateBy;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getUpdateTime() {
|
|
|
- return updateTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUpdateTime(Date updateTime) {
|
|
|
- this.updateTime = updateTime;
|
|
|
- }
|
|
|
-
|
|
|
- public String getSysOrgCode() {
|
|
|
- return sysOrgCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSysOrgCode(String sysOrgCode) {
|
|
|
- this.sysOrgCode = sysOrgCode;
|
|
|
- }
|
|
|
-
|
|
|
- public String getHeatsCode() {
|
|
|
- return heatsCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setHeatsCode(String heatsCode) {
|
|
|
- this.heatsCode = heatsCode;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCasterCode() {
|
|
|
- return casterCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCasterCode(String casterCode) {
|
|
|
- this.casterCode = casterCode;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLadleCode() {
|
|
|
- return ladleCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLadleCode(String ladleCode) {
|
|
|
- this.ladleCode = ladleCode;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getStartPourTime() {
|
|
|
- return startPourTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStartPourTime(Date startPourTime) {
|
|
|
- this.startPourTime = startPourTime;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getStopPourTime() {
|
|
|
- return stopPourTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStopPourTime(Date stopPourTime) {
|
|
|
- this.stopPourTime = stopPourTime;
|
|
|
- }
|
|
|
-
|
|
|
- public Double getFullLadleWeight() {
|
|
|
- return fullLadleWeight;
|
|
|
- }
|
|
|
-
|
|
|
- public void setFullLadleWeight(Double fullLadleWeight) {
|
|
|
- this.fullLadleWeight = fullLadleWeight;
|
|
|
- }
|
|
|
-
|
|
|
- public Double getEmptyLadleWeight() {
|
|
|
- return emptyLadleWeight;
|
|
|
- }
|
|
|
-
|
|
|
- public void setEmptyLadleWeight(Double emptyLadleWeight) {
|
|
|
- this.emptyLadleWeight = emptyLadleWeight;
|
|
|
- }
|
|
|
-
|
|
|
- public Double getMoltenSteelWeight() {
|
|
|
- return moltenSteelWeight;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMoltenSteelWeight(Double moltenSteelWeight) {
|
|
|
- this.moltenSteelWeight = moltenSteelWeight;
|
|
|
- }
|
|
|
-
|
|
|
- public String getSpec() {
|
|
|
- return spec;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSpec(String spec) {
|
|
|
- this.spec = spec;
|
|
|
- }
|
|
|
-
|
|
|
- public String getGrade() {
|
|
|
- return grade;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGrade(String grade) {
|
|
|
- this.grade = grade;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getFirstCutTime() {
|
|
|
- return firstCutTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setFirstCutTime(Date firstCutTime) {
|
|
|
- this.firstCutTime = firstCutTime;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getLastCutTime() {
|
|
|
- return lastCutTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLastCutTime(Date lastCutTime) {
|
|
|
- this.lastCutTime = lastCutTime;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getBilletSum() {
|
|
|
- return billetSum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setBilletSum(Integer billetSum) {
|
|
|
- this.billetSum = billetSum;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLengthOne() {
|
|
|
- return lengthOne;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLengthOne(String lengthOne) {
|
|
|
- this.lengthOne = lengthOne;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLengthOneSum() {
|
|
|
- return lengthOneSum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLengthOneSum(String lengthOneSum) {
|
|
|
- this.lengthOneSum = lengthOneSum;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLengthTwo() {
|
|
|
- return lengthTwo;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLengthTwo(String lengthTwo) {
|
|
|
- this.lengthTwo = lengthTwo;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLengthTwoSum() {
|
|
|
- return lengthTwoSum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLengthTwoSum(String lengthTwoSum) {
|
|
|
- this.lengthTwoSum = lengthTwoSum;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLengthThree() {
|
|
|
- return lengthThree;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLengthThree(String lengthThree) {
|
|
|
- this.lengthThree = lengthThree;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLengthThreeSum() {
|
|
|
- return lengthThreeSum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLengthThreeSum(String lengthThreeSum) {
|
|
|
- this.lengthThreeSum = lengthThreeSum;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLengthFour() {
|
|
|
- return lengthFour;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLengthFour(String lengthFour) {
|
|
|
- this.lengthFour = lengthFour;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLengthFourSum() {
|
|
|
- return lengthFourSum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLengthFourSum(String lengthFourSum) {
|
|
|
- this.lengthFourSum = lengthFourSum;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLengthFive() {
|
|
|
- return lengthFive;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLengthFive(String lengthFive) {
|
|
|
- this.lengthFive = lengthFive;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLengthFiveSum() {
|
|
|
- return lengthFiveSum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLengthFiveSum(String lengthFiveSum) {
|
|
|
- this.lengthFiveSum = lengthFiveSum;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLengthSix() {
|
|
|
- return lengthSix;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLengthSix(String lengthSix) {
|
|
|
- this.lengthSix = lengthSix;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLengthSixSum() {
|
|
|
- return lengthSixSum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLengthSixSum(String lengthSixSum) {
|
|
|
- this.lengthSixSum = lengthSixSum;
|
|
|
- }
|
|
|
-
|
|
|
- public String getOptype() {
|
|
|
- return optype;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOptype(String optype) {
|
|
|
- this.optype = optype;
|
|
|
- }
|
|
|
}
|