12 lines
253 B
C#
12 lines
253 B
C#
namespace DeviceRepair.Models
|
|
{
|
|
public static class DefaultConstValue
|
|
{
|
|
|
|
/// <summary>
|
|
/// 重置用户时用的默认密码
|
|
/// </summary>
|
|
public const string USER_DEFAULT_PASSWORD_RESET = "Kanghui1";
|
|
}
|
|
}
|