1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package zy.cloud.wms.common.service.erp;
|
| import lombok.Data;
|
| /**
| * Created by vincent on 2021/6/29
| */
| @Data
| public class ErpR {
|
| private Boolean success;
|
| private String msg;
|
| public ErpR() {
| }
|
| public ErpR(Boolean success, String msg) {
| this.success = success;
| this.msg = msg;
| }
| }
|
|