AcsStatus.java
570 Bytes
package com.huaheng.api.acs.domain;
import com.baomidou.mybatisplus.annotation.TableField;
import lombok.Data;
/**
* @author 游杰
*/
@Data
public class AcsStatus {
@TableField(value = "TaskNo")
private String TaskNo;
@TableField(value = "AgvNo")
private String AgvNo;
@TableField(value = "State")
private int State;
@TableField(value = "ContainerCode")
private String ContainerCode;
@TableField(value = "executeDate")
private String executeDate;
@TableField(value = "locationCode")
private String locationCode;
}