| | |
| | | package com.vincent.rsf.server.manager.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.Date; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | import com.vincent.rsf.server.system.entity.User; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @TableName("man_warehouse") |
| | | @ApiModel(value = "Warehouse", description = "仓库基础信息") |
| | | public class Warehouse implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @ApiModelProperty(value= "备注") |
| | | private String memo; |
| | | |
| | | /** |
| | | * 库区 |
| | | */ |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("库区") |
| | | private List<WarehouseAreas> children; |
| | | |
| | | |
| | | @TableField(exist = false) |
| | | private Integer flagWare; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("用于仓库树状图,唯一索引") |
| | | private Long index; |
| | | |
| | | public Warehouse() {} |
| | | |
| | | public Warehouse(String name,String code,String factory,String address,String longitude,String latgitude,Double length,Double width,Double height,Integer status,Integer deleted,Integer tenantId,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) { |