package com.ruoyi.warehouse.pojo;
|
|
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 java.io.Serializable;
|
import java.time.LocalDateTime;
|
import java.util.Date;
|
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
/**
|
* 仓库货架表
|
* @TableName warehouse_goods_shelves
|
*/
|
@TableName(value ="warehouse_goods_shelves")
|
@Data
|
@ApiModel
|
public class WarehouseGoodsShelves implements Serializable {
|
/**
|
*
|
*/
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 货架名称
|
*/
|
private String goodsShelvesName;
|
/**
|
* 层数
|
*/
|
private Long storey;
|
|
/**
|
* 列数
|
*/
|
private Long arrange;
|
|
/**
|
* 仓库id
|
*/
|
private Long warehouseId;
|
|
/**
|
* 创建时间
|
*/
|
private LocalDateTime createTime;
|
|
/**
|
* 创建用户
|
*/
|
private Long createUser;
|
|
/**
|
* 修改时间
|
*/
|
private LocalDateTime updateTime;
|
|
/**
|
* 修改用户
|
*/
|
private Long updateUser;
|
|
/**
|
* 租户ID
|
*/
|
private Long tenantId;
|
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
}
|