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