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

📄 xfb.cs

📁 饮食管理系统
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace Entity
{
    public class Xfb
    {
        string _zdh;
        string _tableid;
        string _matname;
        int _matprice;
        float _zk;
        int _number;
        float _price;
        DateTime _dctime;
        string _jzr;
        string _remark;

        public string Remark
        {
            get { return this._remark; }
            set { this._remark = value; }
        }
        public int MatPrice
        {
            get { return this._matprice; }
            set
            {
                this._matprice = value;
            }

        }
        public DateTime Dctime
        {
            get { return this._dctime; }
            set { this._dctime = value; }
        }
        public string Jzr
        {
            get { return this._jzr; }
            set
            {
                this._jzr = value;
            }
        }
        public int Number
        {
            get { return this._number; }
            set { this._number = value; }
        }
        public float Price
        {
            get { return this._price; }
            set
            {
                this._price = value ;
            }

        }
        public string Zdh
        {
            get { return this._zdh; }
            set { this._zdh = value; }

        }
        public string TableID
        {
            get { return this._tableid; }
            set { this._tableid = value; }
        }
        public string MatName
        {
            get { return this._matname; }
            set { this._matname = value; }

        }
        public float Zk
        {
            get { return this._zk; }
            set { this._zk = value;            }
        }



    }
}

⌨️ 快捷键说明

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