| | |
| | | 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; |
| | |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | |
| | | @ApiModelProperty(value = "删除标记") |
| | | @TableLogic |
| | | private Integer delFlag; |
| | | /**工单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) |
| | | @ApiModelProperty(value = "设备ID") |
| | | private String equipmentId; |
| | | /**工序编码*/ |
| | | @Excel(name = "工序编码", width = 15) |
| | | @ApiModelProperty(value = "工序编码") |
| | | private String processCode; |
| | | /**工序名称*/ |
| | | @Excel(name = "工序名称", width = 15) |
| | | @ApiModelProperty(value = "工序名称") |
| | | private String processName; |
| | | /**产线ID*/ |
| | | @Excel(name = "产线ID", width = 15) |
| | | @ApiModelProperty(value = "产线ID") |
| | | private String factoryId; |
| | | /**库存地ID*/ |
| | | @Excel(name = "库存地ID", width = 15) |
| | | @ApiModelProperty(value = "库存地ID") |
| | | private String warehouseId; |
| | | /**物料编码*/ |
| | | @Excel(name = "物料编码", width = 15) |
| | | @ApiModelProperty(value = "物料编码") |
| | |
| | | @Excel(name = "批次号", width = 15) |
| | | @ApiModelProperty(value = "批次号") |
| | | private String batchNumber; |
| | | /**钢球尺寸*/ |
| | | @Excel(name = "钢球尺寸", width = 15) |
| | | @ApiModelProperty(value = "钢球尺寸") |
| | | private String steelBallSize; |
| | | /**数量*/ |
| | | @Excel(name = "数量", width = 15) |
| | | @ApiModelProperty(value = "数量") |
| | | private Double quantity; |
| | | private BigDecimal quantity; |
| | | /**剩余数量*/ |
| | | @Excel(name = "剩余数量", width = 15) |
| | | @ApiModelProperty(value = "剩余数量") |
| | | private Double remainingQuantity; |
| | | private BigDecimal remainingQuantity; |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "工单号") |
| | | private String workOrderCode; |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "设备名称") |
| | | private String equipmentName; |
| | | } |