| | |
| | | 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; |
| | |
| | | @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 = "原库存地") |
| | |
| | | @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; |
| | | } |