| | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | |
| | | @Schema(description = "工序参数ID") |
| | | private Long technologyOperationParamId; |
| | | |
| | | @Schema(description = "工艺路线工序ID") |
| | | private Long technologyRoutingOperationId; |
| | | |
| | | @Schema(description = "标准值") |
| | | private String standardValue; |
| | | |
| | | @Schema(description = "输入值") |
| | | private String inputValue; |
| | | |
| | | @Schema(description = "生产订单工艺路线工序ID") |
| | | private Long productionOrderRoutingOperationId; |
| | | |
| | | @Schema(description = "生产报工表ID") |
| | | private Long productionProductMainId; |
| | | } |