liding
18 小时以前 f29c8786807015d78b9be8a33397f69478d92a76
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
 
}