package com.ruoyi.business.dto; import com.fasterxml.jackson.annotation.JsonProperty; import com.ruoyi.business.entity.PendingInventory; import lombok.Data; import java.util.List; import java.util.Map; import java.util.Objects; @Data public class PendingInventoryDto extends PendingInventory { @JsonProperty("pId") private Long pId; @JsonProperty("officialId") private Long officialId;//正式库id private List> fieldValue;//煤种方案字段list private String coalValue;//煤种方案字段值 private String fields;//煤种方案字段 private String fieldName; //煤种方案字段名 private Integer type; //类型 private String coal;//煤种 private String registrant;//登记人 private String searchAll;//搜索 private List> coalResultList;//配煤计算器煤种信息list private List> fieldsResultList;//配煤计算器方案字段信息list }