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
41
42
43
44
45
46
47
48
49
50
| package com.yuanchu.mom.pojo.dto;
|
| import com.fasterxml.jackson.databind.annotation.JsonSerialize;
| import lombok.Data;
|
| @Data
| //新增成品入库
| public class ImportRepertoryDto {
| /**
| * 订单编码
| **/
| @JsonSerialize
| private String orderCode;
|
| /**
| * 材料编码
| **/
| @JsonSerialize
| private String code;
|
| /**
| * 材料名称
| **/
| @JsonSerialize
| private String name;
|
| /**
| * 型号规格
| **/
| @JsonSerialize
| private String specifications;
|
| /**
| * 单位
| **/
| @JsonSerialize
| private String unit;
|
| /**
| * 数量
| **/
| @JsonSerialize
| private Integer number;
|
| /**
| * 备注
| **/
| @JsonSerialize
| private String note;
| }
|
|