From 1ca5584d7e3200a9af65a099bd26d3593e2ba702 Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期四, 07 五月 2026 14:36:08 +0800
Subject: [PATCH] 迁移pro

---
 src/main/java/com/ruoyi/production/pojo/ProductionOrderRoutingOperationParam.java |   96 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 96 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/ruoyi/production/pojo/ProductionOrderRoutingOperationParam.java b/src/main/java/com/ruoyi/production/pojo/ProductionOrderRoutingOperationParam.java
new file mode 100644
index 0000000..04de53d
--- /dev/null
+++ b/src/main/java/com/ruoyi/production/pojo/ProductionOrderRoutingOperationParam.java
@@ -0,0 +1,96 @@
+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 = "宸ヨ壓璺嚎宸ュ簭鍙傛暟琛╥d")
+    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 = "鐢熶骇鎶ュ伐琛↖D")
+    private Long productionProductMainId;
+}

--
Gitblit v1.9.3