80 lines
2.1 KiB
C#
80 lines
2.1 KiB
C#
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 自定义变量
|
|
/// <summary>
|
|
/// 好友天数变量
|
|
/// </summary>
|
|
public string DayVariate { get; set; } = "[天数]";
|
|
/// <summary>
|
|
/// 查询次数变量
|
|
/// </summary>
|
|
public string QueryVariate { get; set; } = "[查询]";
|
|
/// <summary>
|
|
/// 订单数量变量
|
|
/// </summary>
|
|
public string OrderVariate { get; set; } = "[订单]";
|
|
/// <summary>
|
|
/// 退款变量
|
|
/// </summary>
|
|
public string RefundVariate { get; set; } = "[退款]";
|
|
/// <summary>
|
|
/// 推荐人数变量
|
|
/// </summary>
|
|
public string InviteVariate { get; set; } = "[推荐]";
|
|
|
|
#endregion
|
|
|
|
#region 标记/备注格式
|
|
/// <summary>
|
|
/// 备注功能开关
|
|
/// </summary>
|
|
public SwitchType NotesSwitch { get; set; } = SwitchType.关闭;
|
|
/// <summary>
|
|
/// 老客户备注格式
|
|
/// </summary>
|
|
public string NotesFormat { get; set; } = "ID[编号]-[查询]/[订单]/[退款]/[推荐]";
|
|
|
|
/// <summary>
|
|
/// 新用户首单格式
|
|
/// </summary>
|
|
public string NotesFormat_FirstOrder { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 查询未下单格式
|
|
/// </summary>
|
|
public string NotesFormat_QueryNotOrder { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 新用户格式
|
|
/// </summary>
|
|
public string NotesFormat_NewFirend { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 不用了
|
|
/// </summary>
|
|
//public SwitchType NotesSwitch_NotOrder { get; set; } = SwitchType.关闭;
|
|
/// <summary>
|
|
/// 不用了
|
|
/// </summary>
|
|
//public string NotesFormat_NotOrder { get; set; } = "A [编号]-[昵称]/[推荐]";
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|