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; private String unit; // 商品明细行号 private Integer RowNo; }