init lserp cs 5.0
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
|
||||
namespace Zhaizj.Framework.Common.AppBase {
|
||||
|
||||
/// <summary>
|
||||
/// 注册用户的状态(待审核、删除、置顶、推荐、普通)
|
||||
/// </summary>
|
||||
public class MemberStatus {
|
||||
|
||||
public static readonly int Normal = 0;
|
||||
public static readonly int Pick = 1;
|
||||
public static readonly int Top = 2;
|
||||
public static readonly int Approving = -2;
|
||||
public static readonly int Deleted = -1;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user