⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 statusinfo.cs

📁 动易SiteFactory&#8482 网上商店系统1.0源代码
💻 CS
字号:
namespace PowerEasy.Model.WorkFlow
{
    using PowerEasy.Model;
    using System;

    public class StatusInfo : PowerEasy.Model.Nullable
    {
        private int m_StatusCode;
        private int m_StatusId;
        private string m_StatusName;
        private int m_StatusType;

        public StatusInfo()
        {
        }

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

        public int StatusCode
        {
            get
            {
                return this.m_StatusCode;
            }
            set
            {
                this.m_StatusCode = value;
            }
        }

        public int StatusId
        {
            get
            {
                return this.m_StatusId;
            }
            set
            {
                this.m_StatusId = value;
            }
        }

        public string StatusName
        {
            get
            {
                return this.m_StatusName;
            }
            set
            {
                this.m_StatusName = value;
            }
        }

        public int StatusType
        {
            get
            {
                return this.m_StatusType;
            }
            set
            {
                this.m_StatusType = value;
            }
        }
    }
}

⌨️ 快捷键说明

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