Blame view

src/main/java/com/huaheng/pc/referenceCode/domain/U8Reference.java 1.14 KB
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
package com.huaheng.pc.referenceCode.domain;

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 java.util.Date;

@Data
@TableName(value = "reference_code")
public class U8Reference {


    @TableId(value = "id",type = IdType.AUTO)
    private int id;
    /**
     * U8上游单号
     */
    @TableField(value ="referCode")
    private String referCode;
    /**
     * U8上游类型
     */
    @TableField(value ="referType")
    private String referType;
    /**
     * U8上游类型 名称
     */
    @TableField(value ="typeName")
    private String typeName;
    /**
     * WMS仓库
     */
    @TableField(value ="warehouseCode")
    private String warehouseCode;
    /**
     * 货主 code
     */
    @TableField(value ="companyCode")
    private String companyCode;
    /**
     * 上游仓库
     */
    @TableField(value ="stock")
    private String stock;
    /**
     * 上游仓库
     */
    @TableField(value ="created")
    private Date created;


}