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

📄 临时文件.txt

📁 很久 宏观经济韩国锦湖国家交换机海关核发个回复光滑
💻 TXT
📖 第 1 页 / 共 2 页
字号:

	/// <summary>
	/// ID
	/// </summary>
		public int ID
		{
			get
			{
				return id;
			}
			set
			{
				id = value;
			}
		}

	/// <summary>
	/// 犯人ID
	/// </summary>
		public int Prisoner
		{
			get
			{
				return prisoner;
			}
			set
			{
				prisoner = value;
			}
		}

	/// <summary>
	/// 影音名
	/// </summary>
		public string Name
		{
			get
			{
				return name;
			}
			set
			{
				name = value;
			}
		}

	/// <summary>
	/// 文件名
	/// </summary>
		public string File
		{
			get
			{
				return file;
			}
			set
			{
				file = value;
			}
		}

	/// <summary>
	/// 影音介绍
	/// </summary>
		public string Introduce
		{
			get
			{
				return introduce;
			}
			set
			{
				introduce = value;
			}
		}

==============================
		private int id;
		private int prisoner;
		private int belong;
		private int adjust;
		private DateTime time;
		private string reason;
		private int police;
		private string remarks;

	/// <summary>
	/// ID
	/// </summary>
		public int ID
		{
			get
			{
				return id;
			}
			set
			{
				id = value;
			}
		}

	/// <summary>
	/// 犯人ID
	/// </summary>
		public int Prisoner
		{
			get
			{
				return prisoner;
			}
			set
			{
				prisoner = value;
			}
		}

	/// <summary>
	/// 原属监区
	/// </summary>
		public int Belong
		{
			get
			{
				return belong;
			}
			set
			{
				belong = value;
			}
		}

	/// <summary>
	/// 调入监区
	/// </summary>
		public int Adjust
		{
			get
			{
				return adjust;
			}
			set
			{
				adjust = value;
			}
		}

	/// <summary>
	/// 调入时间
	/// </summary>
		public DateTime Time
		{
			get
			{
				return time;
			}
			set
			{
				time = value;
			}
		}

	/// <summary>
	/// 调入原因
	/// </summary>
		public string Reason
		{
			get
			{
				return reason;
			}
			set
			{
				reason = value;
			}
		}

	/// <summary>
	/// 负责人
	/// </summary>
		public int Police
		{
			get
			{
				return police;
			}
			set
			{
				police = value;
			}
		}

	/// <summary>
	/// 备注
	/// </summary>
		public string Remarks
		{
			get
			{
				return remarks;
			}
			set
			{
				remarks = value;
			}
		}

==============================
    private int id;
    private int jail;
    private string name;
    private int type;
    private string content;
    private string introduce;
    private string describe;

	/// <summary>
	/// ID
	/// </summary>
	public int ID
	{
		get
		{
			return id;
		}
		set
		{
			id = value;
		}
	}

	/// <summary>
	/// 所属监区ID
	/// </summary>
    public int Jail
	{
		get
		{
			return jail;
		}
		set
		{
			jail = value;
		}
	}

	/// <summary>
	/// 地图名称
	/// </summary>
    public string Name
	{
		get
		{
			return name;
		}
		set
		{
			name = value;
		}
	}

	/// <summary>
	/// 地图类型
	/// </summary>
    public int Type
	{
		get
		{
			return type;
		}
		set
		{
			type = value;
		}
	}

	/// <summary>
	/// 文件内容
	/// </summary>
    public string Content
	{
		get
		{
			return content;
		}
		set
		{
			content = value;
		}
	}

	/// <summary>
	/// 地图说明
	/// </summary>
	public string Introduce
	{
		get
		{
			return introduce;
		}
		set
		{
			introduce = value;
		}
	}

	/// <summary>
	/// 地图出入口
	/// </summary>
    public string Describe
	{
		get
		{
			return describe;
		}
		set
		{
			describe = value;
		}
	}

==============================
    private int id;
    private int police;
    private string username;
    private string password;
    private string power;

	/// <summary>
	/// ID
	/// </summary>
    public int ID
	{
		get
		{
			return id;
		}
		set
		{
			id = value;
		}
	}

	/// <summary>
	/// 警员ID
	/// </summary>
    public int Police
	{
		get
		{
			return police;
		}
		set
		{
			police = value;
		}
	}

	/// <summary>
	/// 登录名称
	/// </summary>
    public string Username
	{
		get
		{
			return username;
		}
		set
		{
			username = value;
		}
	}

	/// <summary>
	/// 登录密码
	/// </summary>
    public string Password
	{
		get
		{
			return password;
		}
		set
		{
			password = value;
		}
	}

	/// <summary>
	/// 使用权限
	/// </summary>
    public string Power
	{
		get
		{
			return power;
		}
		set
		{
			power = value;
		}
	}

==============================
		private int id;
		private int number;
		private int type;
		private string name;
		private string content;

	/// <summary>
	/// ID
	/// </summary>
		public int ID
		{
			get
			{
				return id;
			}
			set
			{
				id = value;
			}
		}

	/// <summary>
	/// 人员ID
	/// </summary>
		public int Number
		{
			get
			{
				return number;
			}
			set
			{
				number = value;
			}
		}

	/// <summary>
	/// 人员类型
	/// </summary>
		public int Type
		{
			get
			{
				return type;
			}
			set
			{
				type = value;
			}
		}

	/// <summary>
	/// 照片名称
	/// </summary>
		public string Name
		{
			get
			{
				return name;
			}
			set
			{
				name = value;
			}
		}

	/// <summary>
	/// 文件内容
	/// </summary>
		public string Content
		{
			get
			{
				return content;
			}
			set
			{
				content = value;
			}
		}

==============================
		private int id;
		private int prisoner;
		private int jail;
		private int type;
		private string content;
		private string treatment;
		private DateTime time;

	/// <summary>
	/// ID
	/// </summary>
		public int ID
		{
			get
			{
				return id;
			}
			set
			{
				id = value;
			}
		}

	/// <summary>
	/// 犯人ID
	/// </summary>
		public int Prisoner
		{
			get
			{
				return prisoner;
			}
			set
			{
				prisoner = value;
			}
		}

	/// <summary>
	/// 监区ID
	/// </summary>
		public int Jail
		{
			get
			{
				return jail;
			}
			set
			{
				jail = value;
			}
		}

	/// <summary>
	/// 警告类型
	/// </summary>
		public int Type
		{
			get
			{
				return type;
			}
			set
			{
				type = value;
			}
		}

	/// <summary>
	/// 警告内容
	/// </summary>
		public string Content
		{
			get
			{
				return content;
			}
			set
			{
				content = value;
			}
		}

	/// <summary>
	/// 处理方式
	/// </summary>
		public string Treatment
		{
			get
			{
				return treatment;
			}
			set
			{
				treatment = value;
			}
		}

	/// <summary>
	/// 日期时间
	/// </summary>
		public DateTime Time
		{
			get
			{
				return time;
			}
			set
			{
				time = value;
			}
		}

==============================
txtPoliceNumber          人员编号
txtPoliceName            姓名
cbxPoliceSex             性别
cbxPoliceCardType        证件名称
txtPoliceCardNum         证件号码
txtPoliceCardAddress     证件地址
txtPolicePostal          证件邮编
txtPoliceAddress         联系地址
txtPolicePostalCode      邮政编码
txtPolicePhone           联系电话
cbxPoliceCardClass       身份级别
tmePoliceInTime          调入时间
cbxPoliceState           在职状态
txtPoliceRemarks         备注
txtPoliceResume          简历
txtPoliceCharacteristic  特征

txtPoliceNumber = 
txtPoliceName = 
cbxPoliceSex = 
cbxPoliceCardType = 
txtPoliceCardNum = 
txtPoliceCardAddress = 
txtPolicePostal = 
txtPoliceAddress = 
txtPolicePostalCode = 
txtPolicePhone = 
cbxPoliceCardClass = 
tmePoliceInTime = 
cbxPoliceState = 
txtPoliceRemarks = 
txtPoliceResume = 
txtPoliceCharacteristic = 


cbxJailClass       父级ID
txtJailNumber      监区编号
txtJailName        监区名称
cbxJailPolice      负责警员
txtJailRemarks     监区备注
txtJailJail        区域号

cbxOperatorPolice      警员ID
txtOperatorUsername    登录名称
txtOperatorPassword    登录密码
txtOperatorPower       使用权限



早饭时间 06:00 - 08:00
上午时间 08:00 - 11:00
午饭时间 11:00 - 13:00
下午时间 13:00 - 17:00
晚饭时间 17:00 - 19:00
晚上时间 19:00 - 22:00
夜里时间 22:00 - 06:00

监控/查询
资料添加
资料修改
资料删除
权限管理
监区管理
监区添加
设备管理
添加设备

tvOp
tvPt

⌨️ 快捷键说明

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