|
|
|
@ -0,0 +1,46 @@ |
|
|
|
package com.gaotao.modules.automatedWarehouse.entity; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableId; |
|
|
|
import lombok.Data; |
|
|
|
import org.apache.ibatis.type.Alias; |
|
|
|
import java.time.LocalDateTime; |
|
|
|
|
|
|
|
/** |
|
|
|
* wms_transport_task_detail 表实体类 |
|
|
|
*/ |
|
|
|
@Data |
|
|
|
@Alias("WmsTransportTask") |
|
|
|
public class WmsTransportTaskDetail { |
|
|
|
|
|
|
|
@TableId(type = IdType.AUTO) |
|
|
|
private Long id; |
|
|
|
|
|
|
|
private String site; |
|
|
|
|
|
|
|
private String taskNo; |
|
|
|
|
|
|
|
private Integer itemNo; |
|
|
|
|
|
|
|
private Integer seqNo; |
|
|
|
|
|
|
|
private String actionType; |
|
|
|
|
|
|
|
private String comment; |
|
|
|
|
|
|
|
private String fromLocation; |
|
|
|
|
|
|
|
private String toLocation; |
|
|
|
|
|
|
|
private String agvCode; |
|
|
|
|
|
|
|
private String status; |
|
|
|
|
|
|
|
private LocalDateTime startTime; |
|
|
|
|
|
|
|
private LocalDateTime completeTime; |
|
|
|
|
|
|
|
private String errorCode; |
|
|
|
|
|
|
|
private String errorMsg; |
|
|
|
} |