package com.mes.loadposition.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import org.springframework.stereotype.Component;
|
|
import java.io.Serializable;
|
|
/**
|
*
|
*
|
* @author system
|
* @since 2024-07-09 14:51:27
|
*/
|
@Data
|
@Component
|
@EqualsAndHashCode(callSuper = false)
|
@TableName("load_position")
|
@ApiModel(value = "LoadPosition", description = " ")
|
public class LoadPosition implements Serializable{
|
|
private static final long serialVersionUID=1L;
|
|
/**
|
*
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 架子编号
|
*/
|
@ApiModelProperty("架子编号")
|
private String number;
|
|
/**
|
* 机器编号
|
*/
|
@ApiModelProperty("机器编号")
|
private Long machineId;
|
|
/**
|
* 启用标记
|
*/
|
@ApiModelProperty("启用标记")
|
private String flag;
|
|
/**
|
* 工作状态
|
*/
|
@ApiModelProperty("工作状态")
|
private String state;
|
|
/**
|
* 仓储任务编号
|
*/
|
@ApiModelProperty("仓储任务编号")
|
private Integer storageTaskId;
|
|
/**
|
* 上片位类型
|
*/
|
@ApiModelProperty("上片位类型")
|
private Integer typeFlag;
|
|
/**
|
* 线路
|
*/
|
@ApiModelProperty("线路")
|
private Integer routeGroup;
|
|
|
|
}
|