using Api.Framework.Enums; using Api.Framework.SDK; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static Api.Framework.ApiClient; namespace ProductClient { [Config(Name = "插件-爆单-代运营-配置")] public class Config { /// /// 任务id,最后请求任务的Id /// public long SignId { get; set; } public QrImageType qrImageType { get; set; } public DwzType dwzType { get; set; } /// /// 商品采集源Id /// public string sourceId { get; set; } public string tbPid { get; set; } public string pddPid { get; set; } public string jdPid { get; set; } /// /// 活动链接 /// public string actionLink { get; set; } /// /// 监听时间间隔 /// public int Monitor_Interval { get; set; } /// /// 记录最后发送时间 /// public DateTime LastSendTime { get; set; } /// /// 历史发送过的订单 /// public List historyId { get; set; } /// /// 评语以淘口令显示 /// public bool isPyTkl { get; set; } /// /// 是否评论 /// public bool isPl { get; set; } /// /// 追加自定义评语 /// public string appendComment { get; set; } public Config() { SignId = 0; qrImageType = QrImageType.模板A; dwzType = DwzType.不缩短域名; Monitor_Interval = 0; LastSendTime = DateTime.MinValue; historyId = new List(); isPyTkl = false; isPl = false; appendComment = string.Empty; } } }