自动化立体仓库 - WMS系统
#1
lsh
1 天以前 d1be26f8d8196716257de0d3b09daa83a62bfffe
src/main/java/com/zy/asrs/entity/LocOwner.java
@@ -1,5 +1,6 @@
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;
@@ -18,13 +19,19 @@
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    @ApiModelProperty(value= "")
    @ApiModelProperty(value= "客户名称")
    private String owner;
    @ApiModelProperty(value= "客户编号")
    @TableField("owner_uuid")
    private Long ownerUuid;
    @ApiModelProperty(value= "状态")
    private Integer status;
    @ApiModelProperty(value= "客户类别")
    @TableField("owner_type")
    private Integer ownerType;
    public LocOwner() {}
    public LocOwner(String owner) {
        this.owner = owner;
    }
}