liding
昨天 f29c8786807015d78b9be8a33397f69478d92a76
main-business/src/main/java/com/ruoyi/business/dto/PendingInventoryDto.java
@@ -6,6 +6,7 @@
import java.util.List;
import java.util.Map;
import java.util.Objects;
@Data
public class PendingInventoryDto extends PendingInventory {
@@ -13,29 +14,27 @@
    @JsonProperty("pId")
    private Long pId;
    /**
     * 正式库id
     */
    @JsonProperty("officialId")
    private Long officialId;
    private Long officialId;//正式库id
    private List<Map<String, String>> fieldValue;
    private List<Map<String, String>> fieldValue;//煤种方案字段list
    /**
     * 字段值
     */
    private String coalValue;
    /**
     * 字段
     */
    private String fields;
    /**
     * 字段名
     */
    private String fieldName;
    private String coalValue;//煤种方案字段值
    /**
     * 字段名
     */
    private Integer type;
    private String fields;//煤种方案字段
    private String fieldName; //煤种方案字段名
    private Integer type; //类型
    private String coal;//煤种
    private String registrant;//登记人
    private String searchAll;//搜索
    private List<Map<String, Object>> coalResultList;//配煤计算器煤种信息list
    private List<Map<String, Object>> fieldsResultList;//配煤计算器方案字段信息list
}