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

📄 parameter.cs

📁 某个公司需要维持良好的客户关系
💻 CS
字号:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Web.SessionState;
namespace CRM.Model
{
	/// <summary>
	/// Parameter 的摘要说明。
	/// </summary>
	/// 	[Serializable]
	public class Parameter
	{
	
			private string _template;//模板参数
			private string _usercontrol;//用户控件
			private string _subusercontrol;//子用户控件
			private string _action;				//页面动作
			private string _page;//当前页码
			private string _option;
			private string _key;//操作关键字
			private string _funcid;  //栏目参数
			private string _subfuncid;//子栏目参数
			private string _itemid;			//'产品'参数
			private string _classid;			//类别参数
			private string _temp1;
			private string _temp2;
			private string _temp3;
			private string _temp4;
			private string _temp5;
			private string _temp6;
			public Parameter()
			{}
			public string Template
			{
				get{return _template;}
				set{_template=value;}
			}
			public string UserControl
			{
				get{return _usercontrol;}
				set{_usercontrol=value;}
			}
			public string SubUserControl
			{
				get{return _subusercontrol;}
				set{_subusercontrol=value;}
			}
			public string Option
			{
				get{return _option;}	
				set{_option=value;}
			}
			public string Action
			{
				get{return _action;}	
				set{_action=value;}
			}
			public string Page
			{
				get{return _page;}	
				set{_page=value;}
			}
			public string Key
			{
				get{return _key;}	
				set{_key=value;}
			}

			public string SubFuncId
			{
				get{return _subfuncid;}
				set{_subfuncid=value;}
			}
			public string FuncId
			{
				get{return _funcid;}
				set{_funcid=value;}
			}

			public string ItemId
			{
				get{return _itemid;}
				set{_itemid=value;}
			}
		
			public string ClassId
			{
				get{return _classid;}
				set{_classid=value;}
			}
			public string Temp1
			{
				get{return _temp1;}
				set{_temp1=value;}
			}
			public string Temp2
			{
				get{return _temp2;}
				set{_temp2=value;}
			}
			public string Temp3
			{
				get{return _temp3;}
				set{_temp3=value;}
			}
			public string Temp4
			{
				get{return _temp4;}
				set{_temp4=value;}
			}
			public string Temp5
			{
				get{return _temp5;}
				set{_temp5=value;}
			}
			public string Temp6
			{
				get{return _temp6;}
				set{_temp6=value;}

		}
	}
}

⌨️ 快捷键说明

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