zoujiajian 9 meses atrás
pai
commit
3b0e6c2dec

+ 27 - 3
netflix-dao/src/main/java/com/cyksj/model/manage/request/ReqGoodsSkuInsert.java

@@ -1,5 +1,7 @@
 package com.cyksj.model.manage.request;
 
+import com.baomidou.mybatisplus.annotation.FieldStrategy;
+import com.baomidou.mybatisplus.annotation.TableField;
 import com.cyksj.model.entity.GoodsDiscountPlusPurchaseRelation;
 import lombok.Getter;
 import lombok.Setter;
@@ -234,19 +236,41 @@ public class ReqGoodsSkuInsert {
         private Boolean isDown;
 
         /**
-         * GPT think 每天次数
+         * GPT think 次数
          */
+        @TableField(updateStrategy = FieldStrategy.IGNORED)
         private Integer gptThink;
 
         /**
-         * GPT5 Thinking Pro 每天次数
+         * GPT think 限制时间
          */
+        @TableField(updateStrategy = FieldStrategy.IGNORED)
+        private Long gptThinkLimitTime;
+
+        /**
+         * GPT5 Thinking Pro 次数
+         */
+        @TableField(updateStrategy = FieldStrategy.IGNORED)
         private Integer gptProThink;
 
         /**
-         * 深度研究 每天次数
+         * GPT5 Thinking Pro 限制时间
+         */
+        @TableField(updateStrategy = FieldStrategy.IGNORED)
+        private Long gptProThinkLimitTime;
+
+        /**
+         * 深度研究 次数
          */
+        @TableField(updateStrategy = FieldStrategy.IGNORED)
         private Integer gptDeepStyleLimit;
+
+        /**
+         * 深度研究  限制时间
+         */
+        @TableField(updateStrategy = FieldStrategy.IGNORED)
+        private Long gptDeepStyleLimitTime;
+
     }
 
 }