collectionfieldruleinfo.cs

来自「动易SiteFactory&#8482 网上商店系统1.0源代码」· CS 代码 · 共 163 行

CS
163
字号
namespace PowerEasy.Model.Collection
{
    using PowerEasy.Model;
    using System;

    public class CollectionFieldRuleInfo : PowerEasy.Model.Nullable
    {
        private string m_BeginCode;
        private string m_EndCode;
        private string m_FieldName;
        private int m_FieldRuleId;
        private string m_FieldType;
        private string m_FilterRuleId;
        private int m_ItemId;
        private string m_PrivateFilter;
        private int m_RuleType;
        private string m_SpecialSetting;
        private bool m_UsePaging;

        public CollectionFieldRuleInfo()
        {
        }

        public CollectionFieldRuleInfo(bool value)
        {
            base.IsNull = value;
        }

        public string BeginCode
        {
            get
            {
                return this.m_BeginCode;
            }
            set
            {
                this.m_BeginCode = value;
            }
        }

        public string EndCode
        {
            get
            {
                return this.m_EndCode;
            }
            set
            {
                this.m_EndCode = value;
            }
        }

        public string FieldName
        {
            get
            {
                return this.m_FieldName;
            }
            set
            {
                this.m_FieldName = value;
            }
        }

        public int FieldRuleId
        {
            get
            {
                return this.m_FieldRuleId;
            }
            set
            {
                this.m_FieldRuleId = value;
            }
        }

        public string FieldType
        {
            get
            {
                return this.m_FieldType;
            }
            set
            {
                this.m_FieldType = value;
            }
        }

        public string FilterRuleId
        {
            get
            {
                return this.m_FilterRuleId;
            }
            set
            {
                this.m_FilterRuleId = value;
            }
        }

        public int ItemId
        {
            get
            {
                return this.m_ItemId;
            }
            set
            {
                this.m_ItemId = value;
            }
        }

        public string PrivateFilter
        {
            get
            {
                return this.m_PrivateFilter;
            }
            set
            {
                this.m_PrivateFilter = value;
            }
        }

        public int RuleType
        {
            get
            {
                return this.m_RuleType;
            }
            set
            {
                this.m_RuleType = value;
            }
        }

        public string SpecialSetting
        {
            get
            {
                return this.m_SpecialSetting;
            }
            set
            {
                this.m_SpecialSetting = value;
            }
        }

        public bool UsePaging
        {
            get
            {
                return this.m_UsePaging;
            }
            set
            {
                this.m_UsePaging = value;
            }
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?