liding
昨天 f29c8786807015d78b9be8a33397f69478d92a76
main-business/src/main/java/com/ruoyi/business/dto/PendingInventoryDto.java
@@ -1,8 +1,40 @@
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<Map<String, String>> 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<Map<String, Object>> coalResultList;//配煤计算器煤种信息list
    private List<Map<String, Object>> fieldsResultList;//配煤计算器方案字段信息list
}