2025-04-24 18:31:27 +08:00

32 lines
977 B
C#
Raw 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.

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"}
};
};
}