package com.zy.asrs.entity;
|
|
import com.core.common.Cools;import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.enums.IdType;
|
import com.baomidou.mybatisplus.annotations.TableField;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import java.io.Serializable;
|
|
@Data
|
@TableName("asr_bas_circular_shuttle")
|
public class BasCircularShuttle implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* ID
|
*/
|
@ApiModelProperty(value= "ID")
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
@ApiModelProperty(value= "")
|
@TableField("rgv_id")
|
private Integer rgvId;
|
|
@ApiModelProperty(value= "")
|
@TableField("rgv_no")
|
private Integer rgvNo;
|
|
/**
|
* 0:正常,1:禁用
|
*/
|
@ApiModelProperty(value= "0:正常,1:禁用")
|
private Integer status;
|
|
public BasCircularShuttle() {}
|
|
public BasCircularShuttle(Integer rgvId,Integer rgvNo,Integer status) {
|
this.rgvId = rgvId;
|
this.rgvNo = rgvNo;
|
this.status = status;
|
}
|
|
// BasCircularShuttle basCircularShuttle = new BasCircularShuttle(
|
// null, // [非空]
|
// null, // [非空]
|
// null // 0:正常,1:禁用[非空]
|
// );
|
|
|
}
|