ANDRU-PC\Andru
2023-04-12 adfb9ad8b3c8dc4c2527d7270c9b62f6d5e8f19a
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;
}