1349 lines
63 KiB
C#
1349 lines
63 KiB
C#
|
using Api.Framework.Enums;
|
|||
|
using Api.Framework.Enums;
|
|||
|
using Api.Framework.SDK;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using UI.Framework.Entitys;
|
|||
|
using static TBRebate.Enums;
|
|||
|
|
|||
|
namespace TBRebate
|
|||
|
{
|
|||
|
[Config(Name = "插件-淘宝返利-配置")]
|
|||
|
public class Config
|
|||
|
{
|
|||
|
#region 消费积分设置
|
|||
|
/// <summary>
|
|||
|
/// 消费积分设置
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("1)、基础设置"), DisplayName("01.主推广位使用条件 - 购物积分"), DefaultValue(20),
|
|||
|
Description(@"用户消费积分≥主推广位使用条件,才会使用主推广位,否则均使用副推广位(可以理解为:小号推广位)
|
|||
|
注:01、02条件为并且关系,两个都要满足")
|
|||
|
]
|
|||
|
public int Point { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 消费积分设置
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("1)、基础设置"), DisplayName("02.主推广位使用条件 - 订单笔数"), DefaultValue(20),
|
|||
|
Description(@"用户交易订单数≥主推广位使用条件,才会使用主推广位,否则均使用副推广位(可以理解为:小号推广位)
|
|||
|
注:01、02条件为并且关系,两个都要满足")
|
|||
|
]
|
|||
|
public int OrderNum { get; set; }
|
|||
|
#endregion
|
|||
|
|
|||
|
#region 搜索标题开关
|
|||
|
/// <summary>
|
|||
|
/// 自定义搜索开关
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("2)、关键词搜索"), DisplayName(@"01.搜索功能"), DefaultValue(SwitchType.开启), Description(@"为开启时,关键词搜索功能才有效")
|
|||
|
]
|
|||
|
public SwitchType SearchCustomSwitch { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 关键词搜索指令
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("2)、关键词搜索"), DisplayName(@"02.搜索指令"), DefaultValue(@"^(有没有|有|找|下|查|买)\s?(?<关键词>[^吗嘛没\??]{2,})"),
|
|||
|
Description(@"支持正则表达式,正则表达式关键词: <关键词>
|
|||
|
如果关键字过长,将进行精准搜索
|
|||
|
如果自定义域名,请到主程序中 '系统设置' -> '自定义域名产品库' 设置")
|
|||
|
]
|
|||
|
public string SearchPrefix { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 关键词搜索成功提示语
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("2)、关键词搜索"), DisplayName(@"03.结果提示"), DefaultValue(@"一一一一搜 索 消 息一一一一
|
|||
|
找到【[关键词]】相关宝贝!
|
|||
|
|
|||
|
打开网址复制优惠口令:
|
|||
|
[购买地址]
|
|||
|
━┉┉┉┉∞┉┉┉┉━
|
|||
|
勿用红包付款,否则无法拿返利哦!"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[关键词]、[购买地址]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))
|
|||
|
]
|
|||
|
public string PreciseSearchSuccessTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 短网址
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("2)、关键词搜索"), DisplayName("04.关键词搜索短网址"), DefaultValue(DwzType.快站短网址),
|
|||
|
Description("缩短购买地址网址")
|
|||
|
]
|
|||
|
public DwzType SearchDwzType { get; set; }
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region 提示语
|
|||
|
/// <summary>
|
|||
|
/// 智能标题识别开关
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("3)、商品查询"), DisplayName("01.智能标题识别"), DefaultValue(SwitchType.开启), Description(@"智能标题识别功能,开启可以通过标题搜索宝贝")
|
|||
|
]
|
|||
|
public SwitchType SearchTitleSwitch { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 宝贝二维码识别功能
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("3)、商品查询"), DisplayName("02.智能图片识别"), DefaultValue(SwitchType.开启), Description("智能图片识别功能,开启可以通过宝贝中的二维码搜索宝贝")
|
|||
|
]
|
|||
|
public SwitchType QRCodeSearchSwitch { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 无券模式
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("3)、商品查询"), DisplayName(@"03.无券模式"), DefaultValue(SwitchType.关闭), Description(@"为开启时,有券的商品将以无券的形式返回")
|
|||
|
]
|
|||
|
public SwitchType NoCouponModeSwitch { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 正在搜索宝贝提示语
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("3)、商品查询"), DisplayName("04.正在搜索宝贝"), DefaultValue(@"优惠信息查询中....."),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))
|
|||
|
]
|
|||
|
public string SearchingTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 搜索宝贝无佣金
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("3)、商品查询"), DisplayName("05.无佣金时提示"), DefaultValue(@"一一一一优 惠 结 束一一一一
|
|||
|
活动已结束,暂无其他优惠!
|
|||
|
建议您换个宝贝继续查询哦!"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[关键词]、链接无返利变量:[商品标题]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))
|
|||
|
]
|
|||
|
public string SearchNoCommissionTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 无佣金标题搜索
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("3)、商品查询"), DisplayName(@"06.无佣金标题搜索产品库"), DefaultValue(SwitchType.关闭), Description(@"为开启时,商品无佣金情况下通过商品标题搜索产品库")
|
|||
|
]
|
|||
|
public SwitchType SearchTitleSwitch_NoCommission { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 搜索宝贝无佣金
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("3)、商品查询"), DisplayName("07.无佣金正在标题搜索产品库"), DefaultValue(@"您分享的商品活动已经结束
|
|||
|
|
|||
|
相似的商品可以在产品库中查询:[购买地址]"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[购买地址]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))
|
|||
|
]
|
|||
|
public string SearchTitle_NoCommissionTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 无优惠券时提示
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("3)、商品查询"), DisplayName("08.无优惠券时提示"), DefaultValue(@"一一一一返 利 消 息一一一一
|
|||
|
[商品标题]
|
|||
|
【宝贝原价】[商品原价] [积分名称]
|
|||
|
【返利红包】[返利积分] [积分名称]
|
|||
|
|
|||
|
打开网址复制优惠口令:
|
|||
|
[购买中间页地址]
|
|||
|
━┉┉┉┉∞┉┉┉┉━
|
|||
|
勿用红包付款,否则无法拿返利哦!"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[商品原价]、[商品主图]、[积分名称]、[月销量]、[店铺名称]、[返利积分]、[购买地址]、[购买中间页地址]、[购买淘口令]、[共节省]、[商品图片]、XML:[图片地址]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))
|
|||
|
]
|
|||
|
public string SearchSuccessWithoutCouponTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 有优惠券提示语
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("3)、商品查询"), DisplayName("09.有优惠券时提示"), DefaultValue(@"一一一一返 利 消 息一一一一
|
|||
|
[商品标题]
|
|||
|
【宝贝原价】[商品原价] [积分名称]
|
|||
|
【立即减免】[优惠券金额] [积分名称]
|
|||
|
【返利金额】[券后返利] [积分名称]
|
|||
|
【为您节约】[共节省]元
|
|||
|
|
|||
|
打开网址复制优惠口令:
|
|||
|
[购买中间页地址]
|
|||
|
━┉┉┉┉∞┉┉┉┉━
|
|||
|
勿用红包付款,否则无法拿返利哦!
|
|||
|
下单2分钟后会收到【绑定成功】提示,没有请复制订单编号给我"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[积分名称]、[商品标题]、[商品原价]、[商品主图]、[月销量]、[店铺名称]、[优惠券金额]、[券后返利]、[弃券返利]、[券后价]、[购买地址]、[购买中间页地址]、[购买淘口令]、[共节省]、[商品图片]、XML:[图片地址]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))
|
|||
|
]
|
|||
|
public string SearchSuccessWithCouponTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 无优惠券时提示(QQ)
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("3)、商品查询"), DisplayName("10.无优惠券时提示(QQ)"), DefaultValue(@""),
|
|||
|
Description(@"当该提示语不为空,将回复QQ平台;
|
|||
|
当该提示语为空,将使用""无优惠券时提示""的提示语;
|
|||
|
支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[商品原价]、[商品主图]、[积分名称]、[月销量]、[店铺名称]、[返利积分]、[购买地址]、[购买中间页地址]、[购买淘口令]、[共节省]、[商品图片]、[图片地址]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))
|
|||
|
]
|
|||
|
public string QQSearchSuccessWithoutCouponTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 有优惠券提示语(QQ)
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("3)、商品查询"), DisplayName("11.有优惠券时提示(QQ)"), DefaultValue(@""),
|
|||
|
Description(@"当该提示语不为空,将回复QQ平台;
|
|||
|
当该提示语为空,将使用""有优惠券时提示""的提示语;
|
|||
|
支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[积分名称]、[商品标题]、[商品原价]、[商品主图]、[月销量]、[店铺名称]、[优惠券金额]、[券后返利]、[弃券返利]、[券后价]、[购买地址]、[购买中间页地址]、[购买淘口令]、[共节省]、[商品图片]、[图片地址]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))
|
|||
|
]
|
|||
|
public string QQSearchSuccessWithCouponTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 自定义淘口令信息开关
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("3)、商品查询"), DisplayName(@"12.店铺返利开关"), DefaultValue(SwitchType.开启), Description(@"为开启时,查询是否有店铺推广")
|
|||
|
]
|
|||
|
public SwitchType ShopAdSwitch { get; set; } = SwitchType.开启;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 店铺返提示
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("3)、商品查询"), DisplayName("13.店铺返利提示"), DefaultValue(@"一一一一返 利 消 息一一一一
|
|||
|
[商品标题]
|
|||
|
【返利金额】随机(付款后知晓)
|
|||
|
|
|||
|
已经申请到该店铺所有商品补贴,请仔细查看操作方法!
|
|||
|
|
|||
|
[购买中间页地址]
|
|||
|
|
|||
|
━┉┉┉┉∞┉┉┉┉━
|
|||
|
操作方法:
|
|||
|
①通过网址,复制口令去淘宝
|
|||
|
②找到需要购买的商品
|
|||
|
③付款成功,复制订单号给我"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[积分名称]、[商品标题]、[商品主图]、[图片地址]、[购买地址]、[购买中间页地址]、[购买淘口令]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))
|
|||
|
]
|
|||
|
public string ShopAdSuccessTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 店铺返提示
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("3)、商品查询"), DisplayName("14.店铺返利提示(QQ)"), DefaultValue(@""),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[积分名称]、[商品标题]、[购买中间页地址]、[购买淘口令]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))
|
|||
|
]
|
|||
|
public string QQShopAdSuccessTip { get; set; } = string.Empty;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 强返提示
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("3)、商品查询"), DisplayName("15.天猫精选产品强制返利提示"), DefaultValue(@"一一一一返 利 消 息一一一一
|
|||
|
[商品标题]
|
|||
|
【返利金额】随机(付款后知晓)
|
|||
|
|
|||
|
由于此商品我们申请独家补贴,但要多一个步骤,请仔细查看操作方法!
|
|||
|
[购买中间页地址]
|
|||
|
━┉┉┉┉∞┉┉┉┉━
|
|||
|
操作方法:
|
|||
|
①通过网址,复制口令去淘宝
|
|||
|
②回到微信,复制标题回淘宝
|
|||
|
③粘贴标题,再继续搜索购买
|
|||
|
④付款成功,复制订单号给我
|
|||
|
[分段]
|
|||
|
[商品标题]"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[积分名称]、[商品标题]、[购买中间页地址]、[购买淘口令]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))
|
|||
|
]
|
|||
|
public string CoerceSearchSuccessTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 强反中间页
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("3)、商品查询"), DisplayName("16.天猫精选强制返利中间页"), DefaultValue(@""),
|
|||
|
Description(@"强制返利中间页将会使用这个域名
|
|||
|
例如:http://xxxxxx.xxx?xxx=[淘口令]
|
|||
|
支持变量:[淘口令]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))
|
|||
|
]
|
|||
|
public string CoercePageUrl { get; set; }
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region 淘口令设置
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 自定义淘口令信息开关
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("4)、淘口令设置"), DisplayName(@"01.自定义淘口令信息开关"), DefaultValue(SwitchType.开启), Description(@"为开启时,图片和标题使用自定义设置")
|
|||
|
]
|
|||
|
public SwitchType TKLCustomSwitch { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 淘口令显示图
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("4)、淘口令设置"), DisplayName("02.淘口令显示图"), DefaultValue(@""),
|
|||
|
Description(@"手机淘宝/天猫识别淘口令后出现的弹窗图.
|
|||
|
无设置将使用商品首图
|
|||
|
注:支持网络图"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))
|
|||
|
]
|
|||
|
public string TKLImageUrl { get; set; }
|
|||
|
|
|||
|
private string _TKLTitle;
|
|||
|
/// <summary>
|
|||
|
/// 淘口令标题
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("4)、淘口令设置"), DisplayName("03.淘口令标题"), DefaultValue(@"赶紧抢购哦,内部优惠数量有限!!"),
|
|||
|
Description(@"手机淘宝/天猫识别淘口令后出现的弹窗图.
|
|||
|
无设置将使用默认标题"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))
|
|||
|
]
|
|||
|
public string TKLTitle
|
|||
|
{
|
|||
|
get { return _TKLTitle; }
|
|||
|
set
|
|||
|
{
|
|||
|
if (value.Length < 5)
|
|||
|
throw new Exception("标题长度需要大于等于5");
|
|||
|
else
|
|||
|
_TKLTitle = value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region 订单通知
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 用户订单变化通知
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("5)、订单通知"), DisplayName(@"01.用户订单变化通知"), DefaultValue(SwitchType.开启), Description(@"开启用户订单变化通知功能时,用户的订单发生变化时,将通知用户订单的情况")
|
|||
|
]
|
|||
|
public SwitchType UserOrderChangeSwitch { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 代理获得提成通知
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("5)、订单通知"), DisplayName(@"02.代理获得提成通知"), DefaultValue(SwitchType.关闭), Description(@"开启代理获得提成通知功能时,用户的订单发生变化时,将通知代理获得提成信息")
|
|||
|
]
|
|||
|
public SwitchType AgentReceivedCommissionSwitch { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 群负责人获得提成通知
|
|||
|
/// </summary>
|
|||
|
[
|
|||
|
Category("5)、订单通知"), DisplayName(@"03.群负责人获得提成通知"), DefaultValue(SwitchType.关闭), Description(@"开启群负责人获得提成通知功能时,用户的订单发生变化时,将通知群负责人获得提成信息")
|
|||
|
]
|
|||
|
public SwitchType PrincipalReceivedCommissionSwitch { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 绑定订单号非本人提示语
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("04.已被其他用户绑定"), DefaultValue(@"一一一一绑 定 失 败一一一一
|
|||
|
抱歉,这个订单号已被其他用户绑定!
|
|||
|
Ps:如是您的订单,请联系我们处理!"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[订单号]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OccupyOrderErrorTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单号未找到提示语
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("05.未找到订单号"), DefaultValue(@"一一一一绑 定 失 败一一一一
|
|||
|
抱歉,找不到这个订单!
|
|||
|
|
|||
|
已经记录该订单号
|
|||
|
5分钟内无绑定信息,请重新发送
|
|||
|
|
|||
|
可能失败的原因:
|
|||
|
①没有通过优惠口令下单!
|
|||
|
②使用了节日红包,如:双11
|
|||
|
③可能系统延迟,5分钟后重试!"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[订单号]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string NotFoundOrderErrorTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 重复绑定订单号
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("06.重复绑定订单号"), DefaultValue(@"一一一一重 复 绑 定一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【付款金额】[付款金额] [积分名称]
|
|||
|
【返利积分】[返利积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
收货后,就可以领取返利红包!
|
|||
|
发送关键词:账单 (可查详细信息)"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[订单号]、[付款金额]、[返利积分]、[可兑换积分]、[冻结总金额]、[未收货总金额]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderRepetBindTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单付款提示语
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("07.订单付款"), DefaultValue(@"一一一一绑 定 成 功一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【付款金额】[付款金额] [积分名称]
|
|||
|
【返利积分】[返利积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
收货后,就可以领取返利红包!
|
|||
|
发送关键词:账单 (可查详细信息)"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[订单号]、[付款金额]、[返利积分]、[可兑换积分]、[冻结总金额]、[未收货总金额]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderPaymentTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单付款通知一级提示语
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("08.订单付款通知一级"), DefaultValue(@"一一一一下 级 付 款一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【订单状态】[下级订单状态]
|
|||
|
【一级提成积分】[一级提成积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[下级昵称]、[下级订单状态]、[一级提成积分]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderPaymentInform_OneLevelTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单付款通知二级
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("09.订单付款通知二级"), DefaultValue(@"一一一一下 级 付 款一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【订单状态】[下级订单状态]
|
|||
|
【二级提成积分】[二级提成积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[下级昵称]、[下级订单状态]、[二级提成积分]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderPaymentInform_TwoLevelTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单付款通知三级
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("10.订单付款通知三级"), DefaultValue(@"一一一一下 级 付 款一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【订单状态】[下级订单状态]
|
|||
|
【三级提成积分】[三级提成积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[下级昵称]、[下级订单状态]、[三级提成积分]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderPaymentInform_ThreeLevelTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单付款通知群负责人
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("11.订单付款通知群负责人"), DefaultValue(@"一一一一下 级 付 款一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【订单状态】[下级订单状态]
|
|||
|
【群负责人提成积分】[群负责人提成积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[下级昵称]、[下级订单状态]、[群负责人提成积分]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderPaymentInform_LeaderTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单冻结提示语
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("12.订单冻结"), DefaultValue(@"一一一一订 单 冻 结一一一一
|
|||
|
[昵称]
|
|||
|
[订单号]
|
|||
|
[商品标题]
|
|||
|
已确认收货,系统将“[结算时间]”,奖励您[返利积分][积分名称]"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[订单号]、[子订单号]、[结算时间]、[返利积分]、[可兑换积分]、[冻结总金额]、[未收货总金额]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderFreezeTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单已经结算提示语
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("13.订单已经结算"), DefaultValue(@"一一一一订 单 已 经 结 算一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【子订单号】[子订单号]
|
|||
|
【订单状态】该订单已经完成结算,请勿重复提交
|
|||
|
【可兑换积分】[可兑换积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[订单号]、[子订单号]、[付款金额]、[返利积分]、[可兑换积分]、[冻结总金额]、[未收货总金额]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderAlreadySettlementTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单结算提示语
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("14.订单结算"), DefaultValue(@"一一一一订 单 结 算一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【子订单号】[子订单号]
|
|||
|
【付款金额】[付款金额] 元
|
|||
|
【返利积分】[返利积分] [积分名称]
|
|||
|
【可兑换积分】[可兑换积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[订单号]、[子订单号]、[付款金额]、[返利积分]、[可兑换积分]、[冻结总金额]、[未收货总金额]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderSettlementTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单冻结提示语
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("15.订单结算 - 全额退款"), DefaultValue(@"一一一一订 单 结 算一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【子订单号】[子订单号]
|
|||
|
【付款金额】[付款金额] 元
|
|||
|
【维权金额】[维权金额] 元
|
|||
|
【返利积分】[返利积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
由于订单维权,全额退款,佣金为0
|
|||
|
发送关键词:账单 (可查详细信息)"),
|
|||
|
Description(@"订单维权成功提示,维权类型为全额退款
|
|||
|
支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[订单号]、[子订单号]、[付款金额]、[维权金额]、[结算时间]、[返利积分]、[可兑换积分]、[冻结总金额]、[未收货总金额]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderFrozen_AllTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单冻结提示语
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("16.订单结算 - 部分退款"), DefaultValue(@"一一一一订 单 结 算一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【子订单号】[子订单号]
|
|||
|
【付款金额】[付款金额] 元
|
|||
|
【原始返利积分】[原始返利积分] [积分名称]
|
|||
|
【维权返利积分】[维权返利积分] [积分名称]
|
|||
|
【可兑换积分】[可兑换积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
由于订单维权,部分退款,返利将相应减少
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)"),
|
|||
|
Description(@"订单维权成功提示,维权类型为部分退款
|
|||
|
支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[订单号]、[子订单号]、[付款金额]、[原始返利积分]、[维权返利积分]、[可兑换积分]、[冻结总金额]、[未收货总金额]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderFrozen_PartTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 一级代理获得提成
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("17.一级代理获得提成"), DefaultValue(@"一一一一获 得 提 成一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【佣金金额】[一级提成积分] [积分名称]
|
|||
|
【剩余积分】[剩余积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[下级昵称]、[一级提成积分]、[返利积分]、[剩余积分]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderSettlement_OneLevelTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 二级代理获得提成
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("18.二级代理获得提成"), DefaultValue(@"一一一一获 得 提 成一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【佣金金额】[二级提成积分] [积分名称]
|
|||
|
【剩余积分】[剩余积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[下级昵称]、[二级提成积分]、[剩余积分]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderSettlement_TwoLevelTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 三级代理获得提成
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("19.三级代理获得提成"), DefaultValue(@"一一一一获 得 提 成一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【佣金金额】[三级提成积分] [积分名称]
|
|||
|
【剩余积分】[剩余积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[下级昵称]、[三级提成积分]、[剩余积分]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderSettlement_ThreeLevelTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 群负责人获得提成
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("20.群负责人获得提成"), DefaultValue(@"一一一一获 得 提 成一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【佣金金额】[群负责人提成积分] [积分名称]
|
|||
|
【剩余积分】[剩余积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[下级昵称]、[群负责人提成积分]、[剩余积分]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderSettlement_LeaderTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单退款提示语
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("21.订单申请维权"), DefaultValue(@"一一一一维 权 退 款一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【子订单号】[子订单号]
|
|||
|
【付款金额】[付款金额] 元
|
|||
|
【返利积分】[返利积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
由于维权退款,已经撤销返利!
|
|||
|
发送关键词:账单 (可查详细信息)"),
|
|||
|
Description(@"用户申请退款通知改提示
|
|||
|
支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[订单号]、[子订单号]、[付款金额]、[返利积分]、[可兑换积分]、[冻结总金额]、[未收货总金额]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderRefundTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 客户维权一级代理
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("22.客户维权一级代理"), DefaultValue(@"一一一一客 户 维 权一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【维权金额】[一级提成积分] [积分名称]
|
|||
|
【剩余积分】[剩余积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[下级昵称]、[一级提成积分]、[返利积分]、[剩余积分]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string ClientOrderRefund_OneLevelTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 客户维权二级代理
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("23.客户维权二级代理"), DefaultValue(@"一一一一客 户 维 权一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【维权金额】[二级提成积分] [积分名称]
|
|||
|
【剩余积分】[剩余积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[下级昵称]、[二级提成积分]、[剩余积分]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string ClientOrderRefund_TwoLevelTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 客户维权三级代理
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("24.客户维权三级代理"), DefaultValue(@"一一一一客 户 维 权一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【维权金额】[三级提成积分] [积分名称]
|
|||
|
【剩余积分】[剩余积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[下级昵称]、[三级提成积分]、[剩余积分]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string ClientOrderRefund_ThreeLevelTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 客户维权群负责人
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("25.客户维权群负责人"), DefaultValue(@"一一一一客 户 维 权一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【维权金额】[群负责人提成积分] [积分名称]
|
|||
|
【剩余积分】[剩余积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[下级昵称]、[群负责人提成积分]、[剩余积分]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string ClientOrderRefund_LeaderTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单失效提示语
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("26.订单失效"), DefaultValue(@"一一一一订 单 失 效一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【子订单号】[子订单号]
|
|||
|
【付款金额】[付款金额] 元
|
|||
|
【返利积分】[返利积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
退款或未支付,已经撤销返利!
|
|||
|
发送关键词:账单 (可查详细信息)"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[订单号]、[子订单号]、[付款金额]、[返利积分]、[可兑换积分]、[冻结总金额]、[未收货总金额]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderFailureTip { get; set; }
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单失效通知一级提示语
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("27.订单失效通知一级"), DefaultValue(@"一一一一下 级 订 单 失 效一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【订单状态】[下级订单状态]
|
|||
|
【一级提成积分】[一级提成积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[下级昵称]、[下级订单状态]、[一级提成积分]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderCountermandInform_OneLevelTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单失效通知二级
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("28.订单失效通知二级"), DefaultValue(@"一一一一下 级 订 单 失 效一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【订单状态】[下级订单状态]
|
|||
|
【二级提成积分】[二级提成积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[下级昵称]、[下级订单状态]、[二级提成积分]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderCountermandInform_TwoLevelTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单失效通知三级
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("29.订单失效通知三级"), DefaultValue(@"一一一一下 级 订 单 失 效一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【订单状态】[下级订单状态]
|
|||
|
【三级提成积分】[三级提成积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[下级昵称]、[下级订单状态]、[三级提成积分]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderCountermandInform_ThreeLevelTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单失效通知群负责人
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("30.订单失效通知群负责人"), DefaultValue(@"一一一一下 级 订 单 失 效一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【订单状态】[下级订单状态]
|
|||
|
【群负责人提成积分】[群负责人提成积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]、[下级昵称]、[下级订单状态]、[群负责人提成积分]、[积分名称]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string OrderCountermandInform_LeaderTip { get; set; }
|
|||
|
|
|||
|
|
|||
|
// <summary>
|
|||
|
/// 宝贝多人查询提示绑定
|
|||
|
/// </summary>
|
|||
|
[Category("5)、订单通知"), DisplayName("31.宝贝多人查询提示绑定"), DefaultValue(@"一一一一绑 定 提 示一一一一
|
|||
|
【商品标题】[商品标题]
|
|||
|
该商品被多人查询系统无法匹配是谁下单,请亲手动到淘宝复制订单号给我手动绑定该订单"),
|
|||
|
Description(@"多人查询同一个宝贝,导致无法自动绑定.则将推送该信息给查询过该宝贝的客户
|
|||
|
支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品标题]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string LotUserQueryBindTip { get; set; }
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region 查询限制设置
|
|||
|
/// <summary>
|
|||
|
/// 店铺ID限制提示
|
|||
|
/// </summary>
|
|||
|
[Category("6)、限制通知"), DisplayName("01.店铺ID限制提示"), DefaultValue(@"一一一一查 询 失 败一一一一
|
|||
|
该店铺违规,如有疑问请联系管理员"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[店铺ID]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string SellerIDRestrictTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 商品ID限制提示
|
|||
|
/// </summary>
|
|||
|
[Category("6)、限制通知"), DisplayName("02.商品ID限制提示"), DefaultValue(@"一一一一查 询 失 败一一一一
|
|||
|
该商品违规,如有疑问请联系管理员"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[商品ID]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string ItemIDRestrictTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 拉黑提示
|
|||
|
/// </summary>
|
|||
|
[Category("6)、限制通知"), DisplayName("03.用户被拉黑"), DefaultValue(@"一一一一查 询 失 败一一一一
|
|||
|
[昵称]
|
|||
|
订单编号:[订单号]
|
|||
|
系统测到账号购物可能存在异常
|
|||
|
您已经被拉入黑名单
|
|||
|
如有异议请联系管理员"),
|
|||
|
Description(@"支持变量:[机器人账号]、[机器人昵称]、[账号]、[昵称]、[订单号]"),
|
|||
|
Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor))]
|
|||
|
public string Blocked_RestrictTip { get; set; }
|
|||
|
|
|||
|
///// <summary>
|
|||
|
///// 无佣金标题搜索
|
|||
|
///// </summary>
|
|||
|
//[
|
|||
|
// Category("7)、比价模式"), DisplayName(@"01.查询返佣模式"), DefaultValue(ComparisonType.开启比价接口), Description(@"为开启时,查询的商品为比价佣金;关闭时使用最高佣金")
|
|||
|
//]
|
|||
|
//public ComparisonType ComparisonSwitch { get; set; }
|
|||
|
|
|||
|
[
|
|||
|
Category("7)、比价模式"), DisplayName(@"01.查询返佣模式"), DefaultValue(QueryComparisonType.查询使用比价佣金), Description(@"查询使用实时佣金:查询时自动判定比价/正常订单,显示实际佣金;
|
|||
|
查询使用比价佣金:查询时所有订单以比价佣金显示用户所得佣金;
|
|||
|
查询使用正常佣金:查询时所有订单以正常佣金显示用户所得佣金;")
|
|||
|
]
|
|||
|
public QueryComparisonType QueryComparisonSwitch { get; set; }
|
|||
|
|
|||
|
private int _ComparisonFeeRate;
|
|||
|
|
|||
|
[
|
|||
|
Category("7)、比价模式"), DisplayName(@"02.查询使用比价佣金时预扣除比例(单位%)"), DefaultValue(0), Description(@"该设置只针对查询返佣模式中得(查询使用比价佣金)有效,查询时所有商品以比价佣金显示用户所得佣金,下单成功后为正常订单,那么将该订单扣除预扣除的比例后再计算用户所得佣金
|
|||
|
比如正常订单总佣金为10块钱,扣除预扣除比例(例:10%),则按9元来计算用户所得")
|
|||
|
]
|
|||
|
public int ComparisonFeeRate
|
|||
|
{
|
|||
|
get { return _ComparisonFeeRate; }
|
|||
|
set
|
|||
|
{
|
|||
|
_ComparisonFeeRate = value < 0 ? 0 : value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region 防撸设置
|
|||
|
/// <summary>
|
|||
|
/// 同一店铺多次购买(同一商品)开关
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public bool AShop_SameCommodity_Switch { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 同一店铺多次购买(同一商品)数量
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public int AShop_SameCommodity_Number { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 同一店铺多次购买(同一商品)处理方式
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public OperateType AShop_SameCommodity_OperateType { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 同一店铺多次购买(同一商品)置顶
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public bool AShop_SameCommodity_UserTop { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 同一店铺多次购买(不同商品)开关
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public bool AShop_DifferentCommodity_Switch { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 同一店铺多次购买(不同商品)数量
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public int AShop_DifferentCommodity_Number { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 同一店铺多次购买(不同商品)置顶
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public bool AShop_DifferentCommodity_UserTop { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 同一店铺多次购买(不同商品)处理方式
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public OperateType AShop_DifferentCommodity_OperateType { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 收货时间验证开关
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public bool ReceivingTimeCheck_Switch { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 收货时间验证时长(小时)
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public int ReceivingTimeCheck_Hour { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 收货时间验证处理方式
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public OperateType ReceivingTimeCheck_OperateType { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 收货时间验证置顶
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public bool ReceivingTimeCheck_UserTop { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 收货时间验证订单冻结时间
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public int ReceivingTimeCheck_FreezeTime { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 屏蔽的商品ID集合
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public List<string> ItemIDRestrictList { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 屏蔽的卖家ID集合
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public List<string> SellerIDRestrictlist { get; set; }
|
|||
|
|
|||
|
///// <summary>
|
|||
|
///// 钉钉Api
|
|||
|
///// </summary>
|
|||
|
//[Browsable(false)]
|
|||
|
//public string Abnormal_DingDingApi { get; set; }
|
|||
|
|
|||
|
///// <summary>
|
|||
|
///// 钉钉token值
|
|||
|
///// </summary>
|
|||
|
//[Browsable(false)]
|
|||
|
//public string Abnormal_DingDingApiToken { get; set; }
|
|||
|
|
|||
|
[Browsable(false)]
|
|||
|
public string notice_robotname { get; set; }
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region 淘礼金
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 开启关闭
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public bool TljOnOff { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 淘礼金模式
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public TLJModel TljModel { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 淘礼金名称
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public string TljName { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 允许生成淘礼金商品id
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public string TljItemIds { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 淘礼金创建数量
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public int TljCreateNum { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 淘礼金领取限制
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public int TljGetLimit { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 淘礼金有效期
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public int TljExpireDate { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 淘礼金查询成功
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public string TljSearchSuccess { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 淘礼金付款成功
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public string TljPaymentTip { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 淘礼金结算
|
|||
|
/// </summary>
|
|||
|
[Browsable(false)]
|
|||
|
public string TljSettlementTip { get; set; }
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
public Config()
|
|||
|
{
|
|||
|
this.QueryComparisonSwitch = QueryComparisonType.查询使用比价佣金;
|
|||
|
this.ComparisonFeeRate = 0;
|
|||
|
TljItemIds = string.Empty;
|
|||
|
TljCreateNum = 1;
|
|||
|
TljGetLimit = 1;
|
|||
|
TljExpireDate = 24;
|
|||
|
|
|||
|
TljSearchSuccess = @"一一一一淘 礼 金 返 利 消 息一一一一
|
|||
|
[商品标题]
|
|||
|
【宝贝原价】[商品原价] [积分名称]
|
|||
|
【立即减免】[优惠券金额] [积分名称]
|
|||
|
【淘礼金】[淘礼金金额] [积分名称]
|
|||
|
【为您节约】[共节省]元
|
|||
|
|
|||
|
打开网址复制优惠口令:
|
|||
|
[购买中间页地址]
|
|||
|
━┉┉┉┉∞┉┉┉┉━
|
|||
|
勿用红包付款,否则无法拿返利哦!
|
|||
|
下单2分钟后会收到【绑定成功】提示,没有请复制订单编号给我";
|
|||
|
TljPaymentTip = @"一一一一淘 礼 金 绑 定 成 功一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【付款金额】[付款金额] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
收货后,就可以领取返利红包!
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
TljSettlementTip = @"一一一一淘 礼 金 订 单 结 算一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【子订单号】[子订单号]
|
|||
|
【付款金额】[付款金额] 元
|
|||
|
【返利积分】[返利积分] [积分名称]
|
|||
|
【可兑换积分】[可兑换积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
|
|||
|
SearchDwzType = DwzType.快站短网址;
|
|||
|
|
|||
|
TljOnOff = false;
|
|||
|
TljModel = TLJModel.新人首次查询时使用淘礼金;
|
|||
|
TljName = "淘礼金补贴";
|
|||
|
|
|||
|
this.SellerIDRestrictTip = @"一一一一查 询 失 败一一一一
|
|||
|
该店铺违规,如有疑问请联系管理员";
|
|||
|
this.ItemIDRestrictTip = @"一一一一查 询 失 败一一一一
|
|||
|
该商品违规,如有疑问请联系管理员";
|
|||
|
this.Blocked_RestrictTip = @"一一一一查 询 失 败一一一一
|
|||
|
[昵称]
|
|||
|
订单编号:[订单号]
|
|||
|
系统测到账号购物可能存在异常
|
|||
|
您已经被拉入黑名单
|
|||
|
如有异议请联系管理员";
|
|||
|
|
|||
|
this.AShop_SameCommodity_Switch = false;
|
|||
|
this.AShop_SameCommodity_Number = 10;
|
|||
|
this.AShop_SameCommodity_OperateType = OperateType.通知钉钉群;
|
|||
|
this.AShop_SameCommodity_UserTop = false;
|
|||
|
this.AShop_DifferentCommodity_Switch = false;
|
|||
|
this.AShop_DifferentCommodity_Number = 10;
|
|||
|
this.AShop_DifferentCommodity_UserTop = false;
|
|||
|
this.AShop_DifferentCommodity_OperateType = OperateType.通知钉钉群;
|
|||
|
this.ReceivingTimeCheck_Switch = false;
|
|||
|
this.ReceivingTimeCheck_Hour = 24;
|
|||
|
this.ReceivingTimeCheck_OperateType = OperateType.订单冻结;
|
|||
|
this.ReceivingTimeCheck_FreezeTime = 24;
|
|||
|
this.ReceivingTimeCheck_UserTop = false;
|
|||
|
this.notice_robotname = string.Empty;
|
|||
|
|
|||
|
this.ItemIDRestrictList = new List<string>();
|
|||
|
this.SellerIDRestrictlist = new List<string>();
|
|||
|
|
|||
|
this.TKLTitle = "赶紧抢购哦,内部优惠数量有限!!";
|
|||
|
this.TKLCustomSwitch = SwitchType.开启;
|
|||
|
|
|||
|
this.TKLImageUrl = string.Empty;
|
|||
|
this.CoercePageUrl = string.Empty;
|
|||
|
this.Point = 20;
|
|||
|
this.OrderNum = 20;
|
|||
|
this.NoCouponModeSwitch = SwitchType.关闭;
|
|||
|
this.SearchTitleSwitch = SwitchType.开启;
|
|||
|
this.QRCodeSearchSwitch = SwitchType.开启;
|
|||
|
this.SearchTitleSwitch_NoCommission = SwitchType.关闭;
|
|||
|
this.SearchPrefix = @"^(有没有|有|找|下|查|买)\s?(?<关键词>[^吗嘛没\??]{2,})";
|
|||
|
this.SearchCustomSwitch = SwitchType.开启;
|
|||
|
this.UserOrderChangeSwitch = SwitchType.开启;
|
|||
|
this.PrincipalReceivedCommissionSwitch = SwitchType.关闭;
|
|||
|
this.AgentReceivedCommissionSwitch = SwitchType.关闭;
|
|||
|
this.QQSearchSuccessWithoutCouponTip = string.Empty;
|
|||
|
this.QQSearchSuccessWithCouponTip = string.Empty;
|
|||
|
this.SearchTitle_NoCommissionTip = @"您分享的商品活动已经结束
|
|||
|
|
|||
|
相似的商品可以在产品库中查询:[购买地址]";
|
|||
|
this.PreciseSearchSuccessTip = @"一一一一搜 索 消 息一一一一
|
|||
|
找到【[关键词]】相关宝贝!
|
|||
|
|
|||
|
打开网址复制优惠口令:
|
|||
|
[购买地址]
|
|||
|
━┉┉┉┉∞┉┉┉┉━
|
|||
|
勿用红包付款,否则无法拿返利哦!";
|
|||
|
this.SearchingTip = @"优惠信息查询中.....";
|
|||
|
this.SearchSuccessWithCouponTip = @"一一一一返 利 消 息一一一一
|
|||
|
[商品标题]
|
|||
|
【宝贝原价】[商品原价] [积分名称]
|
|||
|
【立即减免】[优惠券金额] [积分名称]
|
|||
|
【返利金额】[券后返利] [积分名称]
|
|||
|
【为您节约】[共节省]元
|
|||
|
|
|||
|
打开网址复制优惠口令:
|
|||
|
[购买中间页地址]
|
|||
|
━┉┉┉┉∞┉┉┉┉━
|
|||
|
勿用红包付款,否则无法拿返利哦!
|
|||
|
下单2分钟后会收到【绑定成功】提示,没有请复制订单编号给我";
|
|||
|
this.SearchSuccessWithoutCouponTip = @"一一一一返 利 消 息一一一一
|
|||
|
[商品标题]
|
|||
|
【宝贝原价】[商品原价] [积分名称]
|
|||
|
【返利红包】[返利积分] [积分名称]
|
|||
|
|
|||
|
打开网址复制优惠口令:
|
|||
|
[购买中间页地址]
|
|||
|
━┉┉┉┉∞┉┉┉┉━
|
|||
|
勿用红包付款,否则无法拿返利哦!";
|
|||
|
this.ShopAdSuccessTip = @"一一一一返 利 消 息一一一一
|
|||
|
[商品标题]
|
|||
|
【返利金额】随机(付款后知晓)
|
|||
|
|
|||
|
已经申请到该店铺所有商品补贴,请仔细查看操作方法!
|
|||
|
|
|||
|
[购买中间页地址]
|
|||
|
|
|||
|
━┉┉┉┉∞┉┉┉┉━
|
|||
|
操作方法:
|
|||
|
①通过网址,复制口令去淘宝
|
|||
|
②找到需要购买的商品
|
|||
|
③付款成功,复制订单号给我";
|
|||
|
|
|||
|
this.CoerceSearchSuccessTip = @"一一一一返 利 消 息一一一一
|
|||
|
[商品标题]
|
|||
|
【返利金额】随机(付款后知晓)
|
|||
|
|
|||
|
由于此商品我们申请独家补贴,但要多一个步骤,请仔细查看操作方法!
|
|||
|
[购买中间页地址]
|
|||
|
━┉┉┉┉∞┉┉┉┉━
|
|||
|
操作方法:
|
|||
|
①通过网址,复制口令去淘宝
|
|||
|
②回到微信,复制标题回淘宝
|
|||
|
③粘贴标题,再继续搜索购买
|
|||
|
④付款成功,复制订单号给我
|
|||
|
[分段]
|
|||
|
[商品标题]";
|
|||
|
this.SearchNoCommissionTip = @"一一一一优 惠 结 束一一一一
|
|||
|
活动已结束,暂无其他优惠!
|
|||
|
建议您换个宝贝继续查询哦!";
|
|||
|
this.OrderRepetBindTip = @"一一一一重 复 绑 定一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【付款金额】[付款金额] [积分名称]
|
|||
|
【返利积分】[返利积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
收货后,就可以领取返利红包!
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
this.OrderPaymentTip = @"一一一一绑 定 成 功一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【付款金额】[付款金额] [积分名称]
|
|||
|
【返利积分】[返利积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
收货后,就可以领取返利红包!
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
this.OrderPaymentInform_OneLevelTip = @"一一一一下 级 付 款一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【订单状态】[下级订单状态]
|
|||
|
【一级提成积分】[一级提成积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一";
|
|||
|
|
|||
|
this.OrderPaymentInform_TwoLevelTip = @"一一一一下 级 付 款一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【订单状态】[下级订单状态]
|
|||
|
【二级提成积分】[二级提成积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一";
|
|||
|
|
|||
|
this.OrderPaymentInform_ThreeLevelTip = @"一一一一下 级 付 款一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【订单状态】[下级订单状态]
|
|||
|
【三级提成积分】[三级提成积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一";
|
|||
|
|
|||
|
this.OrderPaymentInform_LeaderTip = @"一一一一下 级 付 款一一一一
|
|||
|
【下级昵称】 [下级昵称]
|
|||
|
【订单状态】[下级订单状态]
|
|||
|
【群负责人提成积分】[群负责人提成积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一";
|
|||
|
this.OrderFailureTip = @"一一一一订 单 失 效一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【子订单号】[子订单号]
|
|||
|
【付款金额】[付款金额] 元
|
|||
|
【返利积分】[返利积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
退款或未支付,已经撤销返利!
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
this.OrderCountermandInform_OneLevelTip = @"一一一一下 级 订 单 失 效一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【订单状态】[下级订单状态]
|
|||
|
【一级提成积分】[一级提成积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一";
|
|||
|
this.OrderCountermandInform_TwoLevelTip = @"一一一一下 级 订 单 失 效一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【订单状态】[下级订单状态]
|
|||
|
【二级提成积分】[二级提成积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一";
|
|||
|
this.OrderCountermandInform_ThreeLevelTip = @"一一一一下 级 订 单 失 效一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【订单状态】[下级订单状态]
|
|||
|
【三级提成积分】[三级提成积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一";
|
|||
|
this.OrderCountermandInform_LeaderTip = @"一一一一下 级 订 单 失 效一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【订单状态】[下级订单状态]
|
|||
|
【群负责人提成积分】[群负责人提成积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一";
|
|||
|
this.OrderRefundTip = @"一一一一维 权 退 款一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【子订单号】[子订单号]
|
|||
|
【付款金额】[付款金额] 元
|
|||
|
【返利积分】[返利积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
由于维权退款,已经撤销返利!
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
this.OrderFreezeTip = @"一一一一订 单 冻 结一一一一
|
|||
|
[昵称]
|
|||
|
[订单号]
|
|||
|
[商品标题]
|
|||
|
已确认收货,系统将“[结算时间]”,奖励您[返利积分][积分名称]";
|
|||
|
this.OrderAlreadySettlementTip = @"一一一一订 单 已 经 结 算一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【子订单号】[子订单号]
|
|||
|
【订单状态】该订单已经完成结算,请勿重复提交
|
|||
|
【可兑换积分】[可兑换积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
this.OrderSettlementTip = @"一一一一订 单 结 算一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【子订单号】[子订单号]
|
|||
|
【付款金额】[付款金额] 元
|
|||
|
【返利积分】[返利积分] [积分名称]
|
|||
|
【可兑换积分】[可兑换积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
this.OccupyOrderErrorTip = @"一一一一绑 定 失 败一一一一
|
|||
|
抱歉,这个订单号已被其他用户绑定!
|
|||
|
Ps:如是您的订单,请联系我们处理!";
|
|||
|
this.NotFoundOrderErrorTip = @"一一一一绑 定 失 败一一一一
|
|||
|
抱歉,找不到这个订单!
|
|||
|
|
|||
|
已经记录该订单号
|
|||
|
5分钟内无绑定信息,请重新发送
|
|||
|
|
|||
|
可能失败的原因:
|
|||
|
①没有通过优惠口令下单!
|
|||
|
②使用了节日红包,如:双11
|
|||
|
③可能系统延迟,5分钟后重试!";
|
|||
|
this.OrderFrozen_AllTip = @"一一一一订 单 结 算一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【子订单号】[子订单号]
|
|||
|
【付款金额】[付款金额] 元
|
|||
|
【维权金额】[维权金额] 元
|
|||
|
【返利积分】[返利积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
由于订单维权,全额退款,佣金为0
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
this.OrderFrozen_PartTip = @"一一一一订 单 结 算一一一一
|
|||
|
[商品标题]
|
|||
|
【订单编号】[订单号]
|
|||
|
【子订单号】[子订单号]
|
|||
|
【付款金额】[付款金额] 元
|
|||
|
【原始返利积分】[原始返利积分] [积分名称]
|
|||
|
【维权返利积分】[维权返利积分] [积分名称]
|
|||
|
【可兑换积分】[可兑换积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
由于订单维权,部分退款,返利将相应减少
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
this.OrderSettlement_OneLevelTip = @"一一一一获 得 提 成一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【佣金金额】[一级提成积分] [积分名称]
|
|||
|
【剩余积分】[剩余积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
this.OrderSettlement_TwoLevelTip = @"一一一一获 得 提 成一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【佣金金额】[二级提成积分] [积分名称]
|
|||
|
【剩余积分】[剩余积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
this.OrderSettlement_ThreeLevelTip = @"一一一一获 得 提 成一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【佣金金额】[三级提成积分] [积分名称]
|
|||
|
【剩余积分】[剩余积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
this.OrderSettlement_LeaderTip = @"一一一一获 得 提 成一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【佣金金额】[群负责人提成积分] [积分名称]
|
|||
|
【剩余积分】[剩余积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
this.ClientOrderRefund_OneLevelTip = @"一一一一客 户 维 权一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【维权金额】[一级提成积分] [积分名称]
|
|||
|
【剩余积分】[剩余积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
this.ClientOrderRefund_TwoLevelTip = @"一一一一客 户 维 权一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【维权金额】[二级提成积分] [积分名称]
|
|||
|
【剩余积分】[剩余积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
this.ClientOrderRefund_ThreeLevelTip = @"一一一一客 户 维 权一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【维权金额】[三级提成积分] [积分名称]
|
|||
|
【剩余积分】[剩余积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
this.ClientOrderRefund_LeaderTip = @"一一一一客 户 维 权一一一一
|
|||
|
【下级昵称】[下级昵称]
|
|||
|
【维权金额】[群负责人提成积分] [积分名称]
|
|||
|
【剩余积分】[剩余积分] [积分名称]
|
|||
|
一一一一一一一一一一一一一
|
|||
|
发送关键词:兑换 (可兑换现金哦)
|
|||
|
发送关键词:账单 (可查详细信息)";
|
|||
|
this.LotUserQueryBindTip = @"一一一一绑 定 提 示一一一一
|
|||
|
【商品标题】[商品标题]
|
|||
|
该商品被多人查询系统无法匹配是谁下单,请亲手动到淘宝复制订单号给我手动绑定该订单";
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|