skyouc
6 天以前 de010011aa92785f04b6f0345411c584d49a92d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.vincent.rsf.server.manager.controller.params;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
 
@Data
@Accessors(chain = true)
@ApiModel(value = "PakinItem", description = "组拖明细参数")
public class PakinItem implements Serializable {
    private String trackCode;
 
    private Long matnrId;
 
    private Double receiptQty;
 
}