5 天以前 d3a5c4420a7daf89bc9832f22ca8ed9d7e1adaf9
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;
@@ -39,11 +42,13 @@
    @Excel(name = "备注")
    private String remark;
    @Excel(name = "用户权限(,隔开)")
    private String userPower;
    /**
     * 工资定额
     */
    @Excel(name = "工资定额")
//    @Excel(name = "工资定额")
    private BigDecimal salaryQuota;
    /**
@@ -68,5 +73,9 @@
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    @ApiModelProperty(value ="是否质检")
    @Excel(name = "是否质检", readConverterExp = "0=否,1=是")
    private Boolean isQuality;
}