buhuazhen
2026-04-24 8da04121777dbb6f4880a1cfc1806474cddeb34b
src/main/java/com/ruoyi/production/pojo/ProductProcess.java
@@ -31,16 +31,23 @@
    private Long deviceLeaderId;
    /**
     * 工序编号
     */
    @Excel(name = "工序编号")
    private String no;
    /**
     * 工序名称
     */
    @Excel(name = "工序名称")
    private String name;
    /**
     * 工序编号
     */
    @Excel(name = "工序编号")
    private String no;
    @ApiModelProperty(value ="工序机台")
    @TableField(value = "device_name")
    @Excel(name = "工序机台")
    private String deviceName;
    /**
     * 备注
@@ -53,10 +60,11 @@
     * 工资定额
     */
    @Excel(name = "工资定额")
    @TableField(updateStrategy = FieldStrategy.IGNORED)
//    @TableField(updateStrategy = FieldStrategy.IGNORED)
    private BigDecimal salaryQuota;
    @ApiModelProperty("类型 区分是计时还是计件 0 计时 1计件")
//    @Excel(name = "类型 0 计时 1计件")
    private Long type;
    /**
@@ -82,7 +90,19 @@
    private Long tenantId;
    @ApiModelProperty(value ="是否质检")
    @Excel(name = "是否质检")
    private Boolean isQuality;
    @ApiModelProperty(value ="设备id")
    @TableField(value = "device_id")
    private Long deviceId;
    @ApiModelProperty(value = "创建用户")
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}