using ProjectBase.Data.BaseDAL; using ProjectBase.Util; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SIMDP.Model { /// /// 规则管理 /// [Serializable] public class MoRule : BaseEntity { public MoRule() { this.CurrentLoginUserId = SysEnvironment.CurrentLoginID; } #region Field Members private long m_RuleId = 0; // 规则ID private string m_RuleName = ""; // 规则名称 private string m_RuleValue = ""; // 规则 #endregion #region Property Members /// ///规则ID /// public virtual long RuleId { get { return this.m_RuleId; } set { this.m_RuleId = value; } } /// /// 规则名称 /// public virtual string RuleName { get { return this.m_RuleName; } set { this.m_RuleName = value; } } /// /// 规则 /// public virtual string RuleValue { get { return this.m_RuleValue; } set { this.m_RuleValue = value; } } #endregion } }