32 lines
977 B
C#
32 lines
977 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace MyCode.Project.Infrastructure.Constant
|
||
{
|
||
/// <summary>
|
||
/// 五行常量类,
|
||
/// </summary>
|
||
public class WuxingConst
|
||
{
|
||
/// <summary>
|
||
/// 命位:水1、6 火2、7 木3、8 金4、9 土5、10
|
||
/// </summary>
|
||
public static string[] MingWei = {"", "水", "火", "木", "金", "土", "水", "火", "木", "金", "土" };
|
||
|
||
/// <summary>
|
||
/// 对应的本位群二维码链接
|
||
/// </summary>
|
||
public static Dictionary<string, string> GroupQRCode = new Dictionary<string, string> {
|
||
{"木","/group/wood_group.png"},
|
||
{"水","/group/water_group.png"},
|
||
{"金","/group/metal_group.png"},
|
||
{"火","/group/fire_group.png"},
|
||
{"土","/group/earth_group.png"},
|
||
{"全","/group/all_group.png"}
|
||
};
|
||
};
|
||
}
|