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;
|
import java.util.Date;
|
|
@Data
|
@TableName("cv_devp")
|
public class Devp implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* ID
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 编号
|
*/
|
@TableField("dev_no")
|
private Integer devNo;
|
|
/**
|
* 设备描述
|
*/
|
@TableField("dec_desc")
|
private String decDesc;
|
|
/**
|
* 可入
|
*/
|
@TableField("in_enable")
|
private String inEnable;
|
|
/**
|
* 可出
|
*/
|
@TableField("out_enable")
|
private String outEnable;
|
|
/**
|
* 自动
|
*/
|
private String autoing;
|
|
/**
|
* 有物
|
*/
|
private String loading;
|
|
/**
|
* 能入
|
*/
|
private String canining;
|
|
/**
|
* 能出
|
*/
|
private String canouting;
|
|
|
/**
|
* 工作号
|
*/
|
@TableField("wrk_no")
|
private Integer wrkNo;
|
|
|
/**
|
* 条形码
|
*/
|
private String barcode;
|
|
|
@TableField("loc_type")
|
private Short locType;
|
|
|
/**
|
* 状态 1: 正常 0: 冻结
|
*/
|
@ApiModelProperty(value = "状态 1: 正常 0: 冻结 ")
|
private Integer status;
|
|
/**
|
* 是否删除 1: 是 0: 否
|
*/
|
@ApiModelProperty(value = "是否删除 1: 是 0: 否 ")
|
private Integer deleted;
|
|
/**
|
* 租户
|
*/
|
@ApiModelProperty(value = "租户")
|
private Long tenantId;
|
|
/**
|
* 添加人员
|
*/
|
@ApiModelProperty(value = "添加人员")
|
private Long createBy;
|
|
/**
|
* 添加时间
|
*/
|
@ApiModelProperty(value = "添加时间")
|
private Date createTime;
|
|
/**
|
* 修改人员
|
*/
|
@ApiModelProperty(value = "修改人员")
|
private Long updateBy;
|
|
/**
|
* 修改时间
|
*/
|
@ApiModelProperty(value = "修改时间")
|
private Date updateTime;
|
|
/**
|
* 备注
|
*/
|
@ApiModelProperty(value = "备注")
|
private String memo;
|
}
|