package com.zy.asrs.entity;
|
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.enums.IdType;
|
import com.core.common.Cools;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_process_procedures")
|
public class BasProcessProcedures implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* ID
|
*/
|
@ApiModelProperty(value= "ID")
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 任务号
|
*/
|
@ApiModelProperty(value= "任务号")
|
@TableField("box_specs")
|
private String boxSpecs;
|
|
/**
|
* 堆垛机
|
*/
|
@ApiModelProperty(value= "堆垛机")
|
@TableField("box_type")
|
private String boxType;
|
|
public BasProcessProcedures() {}
|
|
public BasProcessProcedures(String boxSpecs,String boxType) {
|
this.boxSpecs = boxSpecs;
|
this.boxType = boxType;
|
}
|
|
// BasProcessProcedures basProcessProcedures = new BasProcessProcedures(
|
// null, // 任务号[非空]
|
// null // 堆垛机
|
// );
|
|
|
}
|