using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LYFZ.WeixinServiceDate.Model { public class Model_KeywordManagement { public Model_KeywordManagement() { } int _ID = 0; /// /// /// public int ID { get { return _ID; } set { _ID = value; } } string _Keyword = ""; /// /// 关键字 /// public string Keyword { get { return _Keyword; } set { _Keyword = value; } } /// /// 所属模块代码 /// string _FunctionCode = ""; /// /// /// public string FunctionCode { get { return _FunctionCode; } set { _FunctionCode = value; } } DateTime _CreateTime=DateTime.Now; /// /// 创建时间 /// public DateTime CreateTime { get { return _CreateTime; } set { _CreateTime = value; } } int _isEnabled = 1; /// /// 是否启用 0 为禁用 1 为启用 /// public int IsEnabled { get { return _isEnabled; } set { _isEnabled = value; } } } }