using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 系统功能类 /// public class SystemFunction:ModelBase { string code; /// /// 代码 /// public string Code { get { return code; } set { code = value; } } string remark; /// /// 备注 /// public string Remark { get { return remark; } set { remark = value; } } int isEnable; /// /// 启用标识 /// public int IsEnable { get { return isEnable; } set { isEnable = value; } } } }