AgvBillDetail.java 1.28 KB
package com.huaheng.api.acs.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 lombok.Data;

import java.math.BigDecimal;
import java.util.Date;

@Data
@TableName("agv_bill_detail")
public class AgvBillDetail {
    //订单明细id
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    //UUID
    private String taskNo;
    //订单id
    @TableField(value = "billId")
    private Integer billId;
    //物料编码
    @TableField(value = "materialCode")
    private String materialCode;
    //物料名称
    @TableField(value = "materialName")
    private String materialName;
    //数量
    private BigDecimal qty;
    //创建人
    @TableField(value = "createdBy")
    private String createdBy;
    //起始点位
    @TableField(value = "fromPort")
    private String fromPort;
    //目标点位
    @TableField(value = "toPort")
    private String toPort;
    //状态
    private Integer status;
    //明细类型(叫料、送料)
    @TableField(value = "detailType")
    private String detailType;
    //创建时间
    private String created;
    //更新时间
    private String updated;
}