init lserp cs 5.0

This commit is contained in:
cyf
2026-07-10 15:25:05 +08:00
commit 90f3fda86a
3799 changed files with 976868 additions and 0 deletions
@@ -0,0 +1,13 @@
using System;
namespace Zhaizj.Framework.Common.AppBase {
/// <summary>
/// 是否可访问的枚举(公开、好友、私人)
/// </summary>
public enum AccessStatus {
Public,
Friend,
Private
}
}
@@ -0,0 +1,17 @@
using System;
namespace Zhaizj.Framework.Common.AppBase {
/// <summary>
/// 关于是否可评论的枚举状态(允许、关闭、登录用户、好友)
/// </summary>
public class CommentCondition {
public static readonly int AllowAll = 0;
public static readonly int Close = 1;
public static readonly int LoginUser = 2;
public static readonly int Friend = 3;
}
}
@@ -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;
}
}
@@ -0,0 +1,20 @@
using System;
namespace Zhaizj.Framework.Common.AppBase {
/// <summary>
/// 存储状态(普通、草稿、删除、系统删除)
/// </summary>
public class SaveStatus {
public static readonly int Normal = 0;
public static readonly int Draft = 1;
public static readonly int Delete = 2;
public static readonly int SysDelete = 3;
}
}
@@ -0,0 +1,12 @@
using System;
namespace Zhaizj.Framework.Common.AppBase {
/// <summary>
/// 系统推荐状态(当前只推荐一种状态)
/// </summary>
public class SystemPickStatus {
public static readonly int Picked = 0;
}
}