using Api.Framework.Enums; using Api.Framework.SDK; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SignContacts { [Config(Name = "插件-自动打标签-配置")] public class Config { #region 自定义变量 /// /// 好友天数变量 /// public string DayVariate { get; set; } = "[天数]"; /// /// 查询次数变量 /// public string QueryVariate { get; set; } = "[查询]"; /// /// 订单数量变量 /// public string OrderVariate { get; set; } = "[订单]"; /// /// 退款变量 /// public string RefundVariate { get; set; } = "[退款]"; /// /// 推荐人数变量 /// public string InviteVariate { get; set; } = "[推荐]"; #endregion #region 标记/备注格式 /// /// 备注功能开关 /// public SwitchType NotesSwitch { get; set; } = SwitchType.关闭; /// /// 老客户备注格式 /// public string NotesFormat { get; set; } = "ID[编号]-[查询]/[订单]/[退款]/[推荐]"; /// /// 新用户首单格式 /// public string NotesFormat_FirstOrder { get; set; } = string.Empty; /// /// 查询未下单格式 /// public string NotesFormat_QueryNotOrder { get; set; } = string.Empty; /// /// 新用户格式 /// public string NotesFormat_NewFirend { get; set; } = string.Empty; /// /// 不用了 /// //public SwitchType NotesSwitch_NotOrder { get; set; } = SwitchType.关闭; /// /// 不用了 /// //public string NotesFormat_NotOrder { get; set; } = "A [编号]-[昵称]/[推荐]"; #endregion } }