DocumentWarning.java
1.34 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
package com.huaheng.pc.config.documentWarning.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.io.Serializable;
import java.util.Date;
/**
 * 【请填写功能名称】表 document_warning
 * 
 * @author huaheng
 * @date 2022-08-26
 */
@TableName(value = "document_warning")
@Data
public class DocumentWarning implements Serializable{
	private static final long serialVersionUID = 1L;
	
        /** id */
        @TableId(value = "id", type = IdType.AUTO)
    	private Long id;
        /** 仓库编码 */
        @TableField(value = "warehouseCode")
    	private String warehouseCode;
        /** wms单据编码 */
        @TableField(value = "code")
    	private String code;
        /** 上游系统单据编码 */
        @TableField(value = "sourCode")
    	private String sourCode;
        /** 错误原因 */
        @TableField(value = "error")
    	private String error;
        /** 类型 */
        @TableField(value = "type")
    	private String type;
        /** 创建时间 */
        @TableField(value = "created")
    	private Date created;
        /** 创建人员 */
        @TableField(value = "createdBy")
    	private String createdBy;
}