houshuai
2025-07-10 5d73eadd31ee11766818bbce0ff625a98a9ad9f2
src/main/java/org/jeecg/modules/mes/entity/MesWorkReporting.java
@@ -1,9 +1,6 @@
package org.jeecg.modules.mes.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@@ -58,14 +55,17 @@
    private Integer delFlag;
   /**订单ID*/
   @Excel(name = "订单ID", width = 15)
    @Dict(dictTable = "mes_production_order", dicCode = "id", dicText = "order_code")
    @ApiModelProperty(value = "订单ID")
    private String orderId;
   /**工单ID*/
   @Excel(name = "工单ID", width = 15)
    @Dict(dictTable = "mes_production_work_order", dicCode = "id", dicText = "work_order_code")
    @ApiModelProperty(value = "工单ID")
    private String workOrderId;
   /**产线ID*/
   @Excel(name = "产线ID", width = 15)
    @Dict(dictTable = "base_factory", dicCode = "id", dicText = "factory_name")
    @ApiModelProperty(value = "产线ID")
    private String factoryId;
   /**批次号*/
@@ -92,6 +92,7 @@
    private Date reportTime;
   /**线边仓ID*/
   @Excel(name = "线边仓ID", width = 15)
    @Dict(dictTable = "base_line_side_warehouse", dicCode = "id", dicText = "warehouse_name")
    @ApiModelProperty(value = "线边仓ID")
    private String warehouseId;
   /**成品下线打印状态*/
@@ -99,4 +100,18 @@
   @Dict(dicCode = "print_status")
    @ApiModelProperty(value = "成品下线打印状态")
    private String printStatus;
    @TableField(exist = false)
    @ApiModelProperty(value = "订单生产号")
    private String orderCode;
    @TableField(exist = false)
    @ApiModelProperty(value = "工单号")
    private String workOrderCode;
    @TableField(exist = false)
    @ApiModelProperty(value = "产线名称")
    private String factoryName;
    @TableField(exist = false)
    @ApiModelProperty(value = "仓库名称")
    private String warehouseName;
}