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
| 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;
|
| @Data
| public class PendingInventoryDto extends PendingInventory {
|
| @JsonProperty("pId")
| private Long pId;
|
| private List<Map<String, String>> fieldValue;
|
| /**
| * 字段值
| */
| private String coalValue;
| /**
| * 字段
| */
| private String fields;
| /**
| * 字段名
| */
| private String fieldName;
| }
|
|