自动化立体仓库 - WMS系统
zyx
2023-10-24 b885f63a2990ece741fc6db5c55aeeae673062b3
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
package com.zy.common.service.erp.entity;
 
import com.baomidou.mybatisplus.annotations.TableName;
import lombok.Data;
 
/*
ERP中库存比对视图
 */
@Data
@TableName("wlzh_v_st_rd")
public class WlzhVStRd {
    //核算主体
    private String account;
 
    //仓库
    private String cWhName;
 
    //存货编码
    private String cinvcode;
 
    //规格型号
    private String cinvstd;
 
    //计量单位
    private String cComUnitName;
 
    //通用型号
    private String cinvdefine4;
 
    //现存量
    private Double iquantity;
 
    //销售订单号
    private String csocode;
 
    //销售订单行号
    private String isoseq;
}