1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.by4cloud.platformx.business.dto;
|
| import lombok.Data;
|
| @Data
| public class ProductAddDTO {
|
| private String erpTypeCode;
|
| private String erpTypeName;
|
| private String erpCode;
|
| private String erpName;
|
| private String specification;
|
| private String taxCode;
| }
|
|