| | |
| | | package com.zy.asrs.entity; |
| | | |
| | | import com.core.common.Cools;import com.baomidou.mybatisplus.annotations.TableField; |
| | | |
| | | 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 com.baomidou.mybatisplus.annotations.TableName; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | @Data |
| | |
| | | /** |
| | | * ID |
| | | */ |
| | | @ApiModelProperty(value= "ID") |
| | | @ApiModelProperty(value = "ID") |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 任务号 |
| | | */ |
| | | @ApiModelProperty(value= "任务号") |
| | | @ApiModelProperty(value = "任务号") |
| | | @TableField("box_specs") |
| | | private String boxSpecs; |
| | | |
| | | /** |
| | | * 堆垛机 |
| | | */ |
| | | @ApiModelProperty(value= "堆垛机") |
| | | @ApiModelProperty(value = "堆垛机") |
| | | @TableField("box_type") |
| | | private String boxType; |
| | | |
| | | public BasProcessProcedures() {} |
| | | public BasProcessProcedures() { |
| | | } |
| | | |
| | | public BasProcessProcedures(String boxSpecs,String boxType) { |
| | | public BasProcessProcedures(String boxSpecs, String boxType) { |
| | | this.boxSpecs = boxSpecs; |
| | | this.boxType = boxType; |
| | | } |