buhuazhen
昨天 a3f68029372d566db4b852e0d1df72b7773c30c2
src/main/java/com/ruoyi/production/pojo/ProductProcess.java
@@ -5,6 +5,7 @@
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
@@ -24,15 +25,26 @@
    private Long id;
    /**
     * 设备台账id
     */
//    @Excel(name = "设备台账id")
    private Long deviceLeaderId;
    /**
     * 工序名称
     */
    @Excel(name = "工序名称")
    private String name;
    @ApiModelProperty(value ="工序机台")
    @TableField(value = "device_name")
    @Excel(name = "工序机台")
    private String deviceName;
    /**
     * 工序编号
     */
    @Excel(name = "工序编号")
//    @Excel(name = "工序编号")
    private String no;
    /**
@@ -46,7 +58,12 @@
     * 工资定额
     */
    @Excel(name = "工资定额")
    @TableField(updateStrategy = FieldStrategy.IGNORED)
    private BigDecimal salaryQuota;
    @ApiModelProperty("类型 区分是计时还是计件 0 计时 1计件")
    @Excel(name = "类型 0 计时 1计件")
    private Long type;
    /**
     * 创建时间
@@ -70,5 +87,13 @@
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    @ApiModelProperty(value ="是否质检")
    @Excel(name = "是否质检")
    private Boolean isQuality;
    @ApiModelProperty(value ="设备id")
    @TableField(value = "device_id")
    private Long deviceId;
}