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

📄 orderstatusinfo.cs

📁 电子商务网站转载而来[展开所有目录] [建议增加分类] (重要) 您上载的源码为何会被站长不采用或帐号被删除? 1.源码太简单 2.不是源码 3.缺少文件 4.所选类别和开发环境
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace Model
{
    public class OrderStatusInfo
    {
        public int txtId;
        public int txtOrderId;
        public bool txtPayment;
        public bool txtCheckItem;
        public int txtFeedback;

        public OrderStatusInfo()
        {
            //
            // TODO: 在此处添加构造函数逻辑
            //
        }
        public OrderStatusInfo(int nId, int nOrderId, bool nPayment, bool nCheckItem, int nFeedback)
        {

            this.txtId = nId;
            this.txtOrderId = nOrderId;
            this.txtPayment = nPayment;
            this.txtCheckItem = nCheckItem;
            this.txtFeedback = nFeedback;

        }
        public int OrderStatusId
        {

            get { return txtId; }
            set { txtId = value; }

        }
        public int OrderId
        {

            get { return txtOrderId; }
            set { txtOrderId = value; }

        }
        public bool PayMent
        {

            get { return txtPayment; }
            set { txtPayment = value; }

        }
        public bool CheckItem
        {

            get { return txtCheckItem; }
            set { txtCheckItem = value; }

        }
        public int Feedback
        {

            get { return txtFeedback; }
            set { txtFeedback = value; }

        }
    }
}

⌨️ 快捷键说明

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