tijian_tieying/web/cyqdata-master/Xml/ValueReplace.cs
2025-02-20 12:14:39 +08:00

26 lines
625 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace CYQ.Data.Xml
{
/// <summary>
/// XHtmlAction 使用时的值替换
/// </summary>
public class ValueReplace
{
/// <summary>
/// Set 方法中 原节点的值 [#source]
/// </summary>
public const string Source = "[#source]";
/// <summary>
/// LoadData加载数据后数据的值 [#new]
/// </summary>
public const string New = "[#new]";
/// <summary>
/// MutilLanguage 类 Get方法取到值后按[#langsplit]分隔并按当前语言返回分隔符前面或后面值
/// </summary>
public const string LangSplit = "[#langsplit]";
}
}