1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.zy.asrs.entity.param;
|
| import com.zy.common.utils.Synchro;
| import lombok.Data;
|
| @Data
| public class ExportParam {
| private Double anfme;
| private String matnr;
| private String standby1;
| private String standby2;
| private String boxType3;
|
| public void sync(Object source) {
| Synchro.Copy(source, this);
| }
| }
|
|