www.pudn.com > GoodsReportManage.rar > PropertyClass.cs


using System; 
using System.Collections.Generic; 
using System.Text; 
 
namespace GoodsReportManage.ItemClass 
{ 
    class PropertyClass 
    { 
        private static string sendnamevalue; 
        ///  
        /// 传递登录人员账号 
        ///  
        public static string SendNameValue 
        { 
            set 
            { 
                sendnamevalue = value; 
            } 
            get 
            { 
                return sendnamevalue; 
            } 
        } 
 
        private static string sendpopedomvalue; 
        ///  
        /// 传递用户权限 
        ///  
        public static string SendPopedomValue 
        { 
            set 
            { 
                sendpopedomvalue = value; 
            } 
            get 
            { 
                return sendpopedomvalue; 
            } 
        } 
 
        private static string senduseridvalue; 
        ///  
        /// 传递用户ID属性 
        ///  
        public static string SendUserIDValue 
        { 
            set 
            { 
                senduseridvalue = value; 
            } 
            get 
            { 
                return senduseridvalue; 
            } 
        } 
 
        private static string getdgvdata; 
        ///  
        /// 获取DataGridView控件传递过来的值 
        ///  
        public static string GetDgvData 
        { 
            set 
            { 
                getdgvdata = value; 
            } 
            get 
            { 
                return getdgvdata; 
            } 
        } 
 
        private static string savepassword; 
        ///  
        /// 获取用户登录密码 
        ///  
        public static string SavePassword 
        { 
            set 
            { 
                savepassword = value; 
            } 
            get 
            { 
                return savepassword; 
            } 
        } 
 
        private static string goodsid; 
        ///  
        /// 获取商品ID 
        ///  
        public static string GetGoodsID 
        { 
            set 
            { 
                goodsid = value; 
            } 
            get 
            { 
                return goodsid; 
            } 
        } 
 
        private static string stocknum; 
        ///  
        /// 保存库存数量 
        ///  
        public static string StockNum 
        { 
            set 
            { 
                stocknum = value; 
            } 
            get 
            { 
                return stocknum; 
            } 
        } 
 
        private static string stockname; 
        ///  
        /// 获取仓库名称 
        ///  
        public static string StockName 
        { 
            set 
            { 
                stockname = value; 
            } 
            get 
            { 
                return stockname; 
            } 
        } 
 
        private static string stockid; 
        ///  
        /// 获取库存ID 
        ///  
        public static string GetStockID 
        { 
            set 
            { 
                stockid = value; 
            } 
            get 
            { 
                return stockid; 
            } 
        } 
 
        private static string companyname; 
        ///  
        /// 获取供应商名称 
        ///  
        public static string GetCompanyName 
        { 
            set 
            { 
                companyname = value; 
            } 
            get 
            { 
                return companyname; 
            } 
        } 
 
        private static string stockunit; 
        ///  
        /// 获取商品单位 
        ///  
        public static string GetStockUnit 
        { 
            set 
            { 
                stockunit = value; 
            } 
            get 
            { 
                return stockunit; 
            } 
        } 
 
        private static string stockspec; 
        ///  
        /// 获取商品规格 
        ///  
        public static string GetStockSpec 
        { 
            set 
            { 
                stockspec = value; 
            } 
            get 
            { 
                return stockspec; 
            } 
        } 
 
        private static string goodsinprice; 
        ///  
        /// 获取商品进价 
        ///  
        public static string GetGoodsInPrice 
        { 
            set 
            { 
                goodsinprice = value; 
            } 
            get 
            { 
                return goodsinprice; 
            } 
        } 
 
        private static string sellprice; 
        ///  
        /// 获取商品售价 
        ///  
        public static string GetSellPrice 
        { 
            set 
            { 
                sellprice = value; 
            } 
            get 
            { 
                return sellprice; 
            } 
        } 
    } 
}