|
@@ -1,35 +1,39 @@
|
|
package org.jeecg.modules.ads.entity;
|
|
package org.jeecg.modules.ads.entity;
|
|
|
|
|
|
|
|
+import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
-import lombok.Data;
|
|
|
|
|
|
|
|
-import java.util.Date;
|
|
|
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
|
+import lombok.Data;
|
|
|
|
|
|
/**
|
|
/**
|
|
- * 智能投放策略信息
|
|
|
|
- * @author jeecg-boot
|
|
|
|
- * @date 2020-12-10
|
|
|
|
- * @version V1.0
|
|
|
|
|
|
+ * 策略模板表
|
|
*/
|
|
*/
|
|
@Data
|
|
@Data
|
|
-@TableName("ctop_ai_kuaishou_strategy")
|
|
|
|
|
|
+@TableName("ctop_ai_kuaishou_strategy_template")
|
|
public class AiKuaishouStrategyTemplate {
|
|
public class AiKuaishouStrategyTemplate {
|
|
-
|
|
|
|
- /**id*/
|
|
|
|
|
|
+
|
|
|
|
+ /**策略模板id*/
|
|
@TableId(type = IdType.AUTO)
|
|
@TableId(type = IdType.AUTO)
|
|
- private Long id;
|
|
|
|
|
|
+ private Integer id;
|
|
/**账户id*/
|
|
/**账户id*/
|
|
private Integer accountId;
|
|
private Integer accountId;
|
|
- /**名称*/
|
|
|
|
- private String strategyName;
|
|
|
|
|
|
+ /**策略模板名称*/
|
|
|
|
+ private String templateName;
|
|
|
|
+ /**策略类型 1:素材+定向 2:时间+出价 3:素材+出价*/
|
|
|
|
+ private Integer templateType;
|
|
|
|
+ /**测试方向*/
|
|
|
|
+ private String testDirection;
|
|
/**素材选择方式*/
|
|
/**素材选择方式*/
|
|
- private String materialCombinationMode;
|
|
|
|
- /**策略类型*/
|
|
|
|
- private String strategyType;
|
|
|
|
|
|
+ private String materialSelectMethod;
|
|
/**状态1可用 0不可用*/
|
|
/**状态1可用 0不可用*/
|
|
private Integer status;
|
|
private Integer status;
|
|
|
|
+ /**createTime*/
|
|
|
|
+ @ApiModelProperty(value = "createTime")
|
|
private Date createTime;
|
|
private Date createTime;
|
|
|
|
+ /**updateTime*/
|
|
|
|
+ @ApiModelProperty(value = "updateTime")
|
|
private Date updateTime;
|
|
private Date updateTime;
|
|
}
|
|
}
|