gongchunyi
14 小时以前 ebfc4e86415881146c7ae221feb6aa4ff64c8a3c
inspect-server/src/main/java/com/ruoyi/inspect/dto/MaterialPropTableDTO.java
@@ -1,26 +1,31 @@
package com.ruoyi.inspect.dto;
import com.ruoyi.common.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
@Data
public class MaterialPropTableDTO {
    @ApiModelProperty(value = "修改后批次号")
    private String updateBatchNo;
    @Excel(name = "序号")
    @ApiModelProperty(value = "序号")
    private String index;
    @ApiModelProperty(value = "抵达的采购数量")
    private BigDecimal qtyArrived;
    @Excel(name = "供应商名称")
    @ApiModelProperty(value = "供应商名称")
    private String supplierName;
    @ApiModelProperty(value = "零件描述")
    private String partDesc;
    @Excel(name = "到货批次")
    @ApiModelProperty(value = "到货批次")
    private Integer totalBatch;
    @ApiModelProperty(value = "合格状态")
    private Integer inspectStatus;
    @Excel(name = "不合格批次")
    @ApiModelProperty(value = "不合格批次")
    private Integer unqualifiedBatch;
    @ApiModelProperty(value = "下发时间")
    private Date sendTime;
}
    @Excel(name = "合格率(%)")
    @ApiModelProperty(value = "合格率(%)")
    private BigDecimal passRate;
}