Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CronConf ¶
type CronConf struct { MqttUrl string `json:"mqtt_url"` // MQTT URL MqttPort int `json:"mqtt_port"` // MQTT 端口号 MqttClientId string `json:"mqtt_client_id"` // MQTT ClientId LogTopicName string `json:"log_topic_name"` // 日志 主题名称 SqlServer SqlServer `json:"sql_server"` // sqlserver }
配置文件路径
type CronStruct ¶
type CronStruct struct { ID int `json:"id"` // id Name string `json:"name"` // 定时任务名称 ExprStr string `json:"expr_str"` // 表达式 Status int `json:"status"` // 状态 1 启用 0 停用 ScriptTyp int `json:"script_typ"` // 脚本类型 0 数据库脚本 1 shell 脚本 2 其他 Script string `json:"script"` // 脚本 Marks string `json:"marks"` // 备注 }
定时任务基本结构体
Click to show internal directories.
Click to hide internal directories.