gongchunyi
2026-04-16 763c537040d45334190f470cd5ba056610d3aa36
src/main/java/com/ruoyi/production/pojo/ProductProcess.java
@@ -4,6 +4,8 @@
import com.baomidou.mybatisplus.annotation.*;
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;
@@ -14,6 +16,7 @@
@TableName("product_process")
@Data
@ExcelIgnoreUnannotated
@ApiModel(value = "productProcess", description = "工序表")
public class ProductProcess implements Serializable {
    private static final long serialVersionUID = 1L;
@@ -24,27 +27,36 @@
    /**
     * 工序名称
     */
    @Excel(name = "工序名称")
    @Excel(name = "部件名称")
    private String name;
    /**
     * 工序编号
     */
    @Excel(name = "工序编号")
    @Excel(name = "部件编号")
    private String no;
    /**
     * 备注
     */
    @Excel(name = "备注")
    private String remark;
    /**
     * 工资定额
     */
    @Excel(name = "工资定额")
    @TableField(updateStrategy = FieldStrategy.IGNORED)
    private BigDecimal salaryQuota;
    @ApiModelProperty("类型1-加工,2-刮板冷芯制作、3-管路组对、4-罐体连接及调试,5-测试打压,6-其他")
    private Integer type;
    @TableField(exist = false)
    @Excel(name = "部件类型")
    private String ProductProcessType;
    /**
     * 备注
     */
    @Excel(name = "备注")
    private String remark;
    /**
     * 创建时间
@@ -68,5 +80,15 @@
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    @ApiModelProperty(value = "是否质检")
    private Boolean isQuality;
    @ApiModelProperty(value = "创建用户")
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}