自动化立体仓库 - WMS系统
#
1
昨天 7a27f5e7896cace9e519f6343c76e91d5c43800a
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;
    }
}