package com.huaheng.pc.tool.verify.domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data @TableName("wcstask") public class ContrastTask { @TableId(value = "id", type = IdType.AUTO) @ApiModelProperty(value="id") private Integer id; @TableField(value = "remoteTaskNo") @ApiModelProperty(value="上游任务id") private String remoteTaskNo; @TableField(value = "taskType") @ApiModelProperty(value="任务类型") private short taskType; @TableField(value = "taskStatus") @ApiModelProperty(value="任务状态") private short taskStatus; @TableField(value = "containerCode") @ApiModelProperty(value="容器编号") private String containerCode; @TableField(value = "fromLocationCode") @ApiModelProperty(value="源库位") private String fromLocationCode; @TableField(value = "toLocationCode") @ApiModelProperty(value="目的库位") private String toLocationCode; }