1
13 小时以前 34503a2e9a29418346a4ac8f84170ab8f4321d6e
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package com.vincent.rsf.openApi.entity.app;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
@Data
@Accessors(chain = true)
@TableName("open_api_order_item")
public class OpenApiOrderItem implements Serializable {
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    @TableField("order_id")
    private Long orderId;
 
    @TableField("order_code")
    private String orderCode;
 
    @TableField("plat_item_id")
    private String platItemId;
 
    @TableField("plat_order_code")
    private String platOrderCode;
 
    @TableField("plat_work_code")
    private String platWorkCode;
 
    @TableField("matnr_code")
    private String matnrCode;
 
    private String maktx;
 
    private String model;
 
    private String spec;
 
    private BigDecimal anfme;
 
    @TableField("stock_unit")
    private String stockUnit;
 
    @TableField("work_qty")
    private BigDecimal workQty;
 
    private BigDecimal qty;
 
    private String batch;
 
    private String memo;
 
    @TableField("target_warehouse_id")
    private String targetWarehouseId;
 
    @TableField("source_warehouse_id")
    private String sourceWarehouseId;
 
    @TableField("owner_id")
    private String ownerId;
 
    @TableField("base_unit")
    private String baseUnit;
 
    @TableField("use_org_id")
    private String useOrgId;
 
    @TableField("use_org_name")
    private String useOrgName;
 
    @TableField("erp_cls_id")
    private String erpClsId;
 
    @TableField("price_unit_id")
    private String priceUnitId;
 
    @TableField("in_stock_type")
    private String inStockType;
 
    @TableField("owner_type_id")
    private String ownerTypeId;
 
    @TableField("owner_name")
    private String ownerName;
 
    @TableField("keeper_type_id")
    private String keeperTypeId;
 
    @TableField("keeper_id")
    private String keeperId;
 
    @TableField("keeper_name")
    private String keeperName;
 
    private Integer status;
 
    private Integer deleted;
 
    @TableField("create_time")
    private Date createTime;
 
    @TableField("update_time")
    private Date updateTime;
}