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

📄 addgoods.cs

📁 库存管理系统,对企业仓库的产品进行管理,使用C#语句 .net 平台开发
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace FORU_SMS_.BaseClass
{
    public class AddGoods
    {
        public string _GoodsID;
        public string _GoodsName;
        public string _StoreName;
        public string _SupName;
        public string _SpecName;
        public string _UnitName;
        public int _GoodsNum;
        public double _GoodsPrice;
        public double _GoodsAPrice;
        public string _GoodsPeople;
        public string _GoodsRemarks;

        public string GoodsID
        {
            set { _GoodsID = value; }
            get { return _GoodsID; }
        }

        public string GoodsName
        {
            set { _GoodsName = value; }
            get { return _GoodsName; }
        }

        public string StoreName
        {
            set { _StoreName = value; }
            get { return _StoreName; }
        }

        public string SupName
        {
            set { _SupName = value; }
            get { return _SupName; }
        }

        public string SpecName
        {
            set { _SpecName = value; }
            get { return _SpecName; }
        }

        public string UnitName
        {
            set { _UnitName = value; }
            get { return _UnitName; }
        }

        public int GoodsNum
        {
            set { _GoodsNum = value; }
            get { return _GoodsNum; }
        }

        public double GoodsPrice
        {
            set { _GoodsPrice = value; }
            get { return _GoodsPrice; }
        }

        public double GoodsAPrice
        {
            set { _GoodsAPrice = value; }
            get { return _GoodsAPrice; }
        }

        public string GoodsPeople
        {
            set { _GoodsPeople = value; }
            get { return _GoodsPeople; }
        }

        public string GoodsRemarks
        {
            set { _GoodsRemarks = value; }
            get { return _GoodsRemarks; }
        }

    }
}

⌨️ 快捷键说明

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