using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Constant
{
///
/// 流行美常量 - 微信模板
///
public partial class LxmConst
{
///
/// 微信模板
///
public class WechatTemplate
{
///
/// 换行符
///
public const string LINE = "\n";
///
/// 换行符 替换键
///
public const string LINE_KEY = "#Line#";
///
/// 现金消费 替换键
///
public const string CASH_USE_KEY = "#CashUse#";
///
/// 余额消费 替换键
///
public const string BALANCE_USE_KEY = "#BalanceUse#";
///
/// 余额 替换键
///
public const string BALANCE_KEY = "#Balance#";
///
/// 消费明细 替换键
///
public const string CONSUMPTION_ITEMS_KEY = "#ConsumptionItems#";
///
/// 服务明细 替换键
///
public const string SERVICE_ITEMS_KEY = "#ServiceItems#";
}
}
}