自动化立体仓库 - WMS系统
#1
lsh
5 天以前 82ad5c5c743060cd36cbae518125ecc40691d633
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
package com.zy.asrs.entity;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@TableName("bas_loc_owner")
public class LocOwner implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value= "")
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value= "客户名称")
    private String owner;
 
    @ApiModelProperty(value= "客户编号")
    private Long uuid;
 
    @ApiModelProperty(value= "状态")
    private Integer status;
 
    @ApiModelProperty(value= "客户类别")
    @TableField("owner_type")
    private Integer ownerType;
 
    public LocOwner() {}
 
}