新火炬后端单体项目初始化代码
zhangherong
昨天 99af0223ae0858c69d1b75106d5f8bb0ab14b129
src/main/java/org/jeecg/modules/mes/entity/MesTransferOrderPrint.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;
@@ -64,11 +61,10 @@
   @Excel(name = "移库单号", width = 15)
    @ApiModelProperty(value = "移库单号")
    private String workOrderCode;
   /**移库类型*/
   @Excel(name = "移库类型", width = 15, dicCode = "order_category")
   @Dict(dicCode = "order_category")
    @ApiModelProperty(value = "移库类型")
    private String orderCategory;
    /**库存ID*/
    @Excel(name = "库存ID", width = 15)
    @ApiModelProperty(value = "库存ID")
    private String inventoryId;
   /**原库存地*/
   @Excel(name = "原库存地", width = 15)
    @ApiModelProperty(value = "原库存地")
@@ -100,4 +96,14 @@
   @Dict(dicCode = "order_status")
    @ApiModelProperty(value = "移库单状态")
    private String orderStatus;
    @TableField(exist = false)
    @ApiModelProperty(value = "生产订单号")
    private String orderCode;
    @TableField(exist = false)
    @ApiModelProperty(value = "目标库存地")
    private String targetWarehouseName;
    @TableField(exist = false)
    @ApiModelProperty(value = "原库存地")
    private String originalWarehouseName;
}