| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.production.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | |
| | | /** |
| | | * <p> |
| | | * ç产订åå·¥èºè·¯çº¿å·¥åºåæ°è¡¨ |
| | | * </p> |
| | | * |
| | | * @author è¯å¯¼è½¯ä»¶ï¼æ±èï¼æéå
¬å¸ |
| | | * @since 2026-04-21 03:55:52 |
| | | */ |
| | | @Data |
| | | @TableName("production_order_routing_operation_param") |
| | | @Schema(name = "ProductionOrderRoutingOperationParam对象", description = "ç产订åå·¥èºè·¯çº¿å·¥åºåæ°è¡¨") |
| | | public class ProductionOrderRoutingOperationParam implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Schema(description = "id") |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @Schema(description = "ç产订åid") |
| | | private Long productionOrderId; |
| | | |
| | | @Schema(description = "å·¥èºè·¯çº¿å·¥åºåæ°è¡¨id") |
| | | private Long technologyRoutingOperationParamId; |
| | | |
| | | @Schema(description = "åæ°ç¼ç (å¯ä¸æ è¯)") |
| | | private String paramCode; |
| | | |
| | | @Schema(description = "åæ°åç§°") |
| | | private String paramName; |
| | | |
| | | @Schema(description = "åæ°ç±»å(1æ°å 2ææ¬ 3䏿鿩 4æ¶é´)") |
| | | private Byte paramType; |
| | | |
| | | @Schema(description = "åæ°æ ¼å¼") |
| | | private String paramFormat; |
| | | |
| | | @Schema(description = "åä½") |
| | | private String unit; |
| | | |
| | | @Schema(description = "æ¯å¦å¿
å¡«") |
| | | private Byte isRequired; |
| | | |
| | | @Schema(description = "夿³¨") |
| | | private String remark; |
| | | |
| | | @Schema(description = "å建人") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private String createUser; |
| | | |
| | | @Schema(description = "å建æ¶é´") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private LocalDateTime createTime; |
| | | |
| | | @Schema(description = "ä¿®æ¹äºº") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private String updateUser; |
| | | |
| | | @Schema(description = "ä¿®æ¹æ¶é´") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | |
| | | @Schema(description = "é¨é¨ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | @Schema(description = "åºç¡åæ°ID") |
| | | private Long paramId; |
| | | |
| | | @Schema(description = "å·¥åºid") |
| | | private Long technologyOperationId; |
| | | |
| | | @Schema(description = "å·¥åºåæ°ID") |
| | | private Long technologyOperationParamId; |
| | | |
| | | @Schema(description = "æ åå¼") |
| | | private String standardValue; |
| | | |
| | | @Schema(description = "è¾å
¥å¼") |
| | | private String inputValue; |
| | | |
| | | @Schema(description = "ç产订åå·¥èºè·¯çº¿å·¥åºID") |
| | | private Long productionOrderRoutingOperationId; |
| | | |
| | | @Schema(description = "ç产æ¥å·¥è¡¨ID") |
| | | private Long productionProductMainId; |
| | | } |