package com.zy.asrs.entity;
|
|
|
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 java.util.Date;
|
|
@Data
|
@TableName("can_fin")
|
public class CanFin {
|
|
/**
|
* 主键编号
|
*/
|
@ApiModelProperty(value= "主键")
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 入库单号
|
*/
|
@TableField("in_no")
|
private String inNo;
|
|
/**
|
* 出库号
|
* */
|
@TableField("out_no")
|
private String outNo;
|
|
/**
|
* 插入时间
|
*/
|
@TableField("apply_time")
|
private Date applyTime;
|
|
/**
|
* 任务类型
|
*/
|
@TableField("task_type")
|
private String taskType;
|
|
/**
|
* 任务状态
|
*/
|
@TableField("task_status")
|
private String taskStatus;
|
|
/**
|
* 出库类型
|
*/
|
@TableField("out_type")
|
private String outType;
|
|
/**
|
* agv类型
|
*/
|
@TableField("agv_type")
|
private String agvType;
|
}
|