using System; namespace Zhaizj.Framework.Common.AppBase { /// /// ×¢²áÓû§µÄ״̬(´ýÉóºË¡¢É¾³ý¡¢Öö¥¡¢ÍƼö¡¢ÆÕͨ) /// 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; } }