| | |
| | | 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 lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | /** |
| | | * @Description: 上料 |
| | | * @Author: jeecg-boot |
| | | * @Date: 2025-07-04 |
| | | * @Date: 2025-07-07 |
| | | * @Version: V1.0 |
| | | */ |
| | | @Data |
| | |
| | | @ApiModelProperty(value = "删除标记") |
| | | @TableLogic |
| | | private Integer delFlag; |
| | | /**申请单ID*/ |
| | | @Excel(name = "申请单ID", width = 15) |
| | | @ApiModelProperty(value = "申请单ID") |
| | | private String requestId; |
| | | /**工单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; |
| | | /**物料编码*/ |
| | | @Excel(name = "物料编码", width = 15) |
| | | @ApiModelProperty(value = "物料编码") |
| | |
| | | @Excel(name = "物料名称", width = 15) |
| | | @ApiModelProperty(value = "物料名称") |
| | | private String materialName; |
| | | /**理论拉动数量*/ |
| | | @Excel(name = "理论拉动数量", width = 15) |
| | | @ApiModelProperty(value = "理论拉动数量") |
| | | private Double specifiedQuantity; |
| | | /**实际拉动数量*/ |
| | | @Excel(name = "实际拉动数量", width = 15) |
| | | @ApiModelProperty(value = "实际拉动数量") |
| | | private Double actualQuantity; |
| | | /**车间剩余数量*/ |
| | | @Excel(name = "车间剩余数量", width = 15) |
| | | @ApiModelProperty(value = "车间剩余数量") |
| | | /**批次号*/ |
| | | @Excel(name = "批次号", width = 15) |
| | | @ApiModelProperty(value = "批次号") |
| | | private String batchNumber; |
| | | /**数量*/ |
| | | @Excel(name = "数量", width = 15) |
| | | @ApiModelProperty(value = "数量") |
| | | private Double quantity; |
| | | /**剩余数量*/ |
| | | @Excel(name = "剩余数量", width = 15) |
| | | @ApiModelProperty(value = "剩余数量") |
| | | private Double remainingQuantity; |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "工单号") |
| | | private String workOrderCode; |
| | | } |