| | |
| | | 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; |
| | | |
| | | /** |
| | | * 正式库id |
| | | */ |
| | | @JsonProperty("officialId") |
| | | private Long officialId; |
| | | |
| | | private List<Map<String, String>> fieldValue; |
| | | |
| | | /** |
| | | * 字段值 |
| | | */ |
| | | private String coalValue; |
| | | /** |
| | | * 字段 |
| | | */ |
| | | private String fields; |
| | | /** |
| | | * 字段名 |
| | | */ |
| | | private String fieldName; |
| | | } |