using System; namespace Zhaizj.Framework.Common.Security { /// /// 可存储权限数据的对象接口 /// public interface ISecurity { String Security { get; set; } Result update(); } }