1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.hz.his.dto.order;
|
| import lombok.Data;
|
|
| /**
| * 创建订单返回的实体
| * @author fwq
| * */
| @Data
| public class CreateOrderReturnItemDto {
| /**商品标识/项目标识/其他标识*/
| private String commonId;
| /**phis的item标识*/
| private String id;
| /**商户平台item标识*/
| private String commonItemId;
| }
|
|