1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.changhong.epc.count.service.count.model;
|
| import java.util.List;
|
| import lombok.Data;
|
| @Data
| public class CountParamMax {
|
| /**
| * 云账房订单号
| */
| private String orderCode;
|
| /**
| *
| */
| private List<UnitInfo> unitData;
|
| /**
| * 业务类型
| */
| private String ctId;
| }
|
|