#
luxiaotao1123
2021-03-17 b31c69631ee75cdc02195a2e3efff3f9ad95943d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package zy.cloud.wms.common.service.erp.entity;
 
import lombok.Data;
 
/**
 * Created by vincent on 2021/3/1
 */
@Data
public class GetOrderResultDetl0 {
 
    // 商品编号 进销存系统中商品编码
    private String userCode;
 
    // 商品数量
    private Double qty;
 
    // 商品单价
    private Double Price;
 
    // 单行商品备注
    private String comment;
 
}