package com.mzl.flower.entity.film;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.mzl.flower.base.BaseAutoEntity;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* 模型任务配置表
|
*
|
* @author generator@Fang
|
* @since 2025-07-01
|
*/
|
@Data
|
@TableName("ai_content_task_config")
|
public class AiContentTaskConfig extends BaseAutoEntity {
|
private String taskName;
|
private String aiParams;
|
private String cron;
|
/**
|
* 状态(0禁用,1启用)
|
*/
|
private Boolean isEnabled;
|
private Date lastRunTime;
|
private String type;
|
|
private String promptArticle;
|
private String promptRoute;
|
private String promptTravel;
|
private String promptLocaltion;
|
|
}
|