自动化立体仓库 - WMS系统
#
zjj
2025-09-23 4d09907aa7c8df5193996117b02127720a916811
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.zy.kingdee.entity;
 
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.math.BigDecimal;
 
@Data
public class CanelTongBuDTO {
    private Integer matType;
    private Integer ioType;
    @JSONField(
            name = "FInterID"
    )
    private Integer FInterID;
    @JSONField(
            name = "FBillNo"
    )
    private String FBillNo;
    @JSONField(
            name = "Fnumber"
    )
    private String Fnumber;
    @JSONField(
            name = "FQty"
    )
    private BigDecimal FQty;
    private String code;
    private String msg;
}