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

📄 patrolman.h

📁 变压器监控程序
💻 H
字号:
// PatrolMan.h: interface for the CPatrolMan class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_PATROLMAN_H__478F2C1B_CE54_4A21_8E4F_68570ADE68BB__INCLUDED_)
#define AFX_PATROLMAN_H__478F2C1B_CE54_4A21_8E4F_68570ADE68BB__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CPatrolMan  
{
public:
	CString PatrolManId;
	CString PatrolTime;
	CString PatrolManName;
	CString PatrolManSex;
	CString PatrolManPhone;
	CString PatrolManAddress;
public:
	CString GetPatrolManId();
	void SetPatrolManId(CString vManId);

	CString  GetPatrolTime();
	void SetPatrolTime(CString vPatrolTime);

	CString GetPatrolManName();
	void SetPatrolManName(CString vPatrolManName);

	CString  GetPatrolManSex();
	void SetPatrolManSex(CString vPatrolManSex);

	CString GetPatrolManPhone();
	void SetPatrolManPhone(CString vPatrolManPhone);

	CString GetPatrolManAddress();
	void SetPatrolManAddress(CString vPatrolManAddress);

	void sql_insert();
	void sql_delete(CString cPatrolManId);
    void GetData(CString cPatrolManId);

	CPatrolMan();
	virtual ~CPatrolMan();

};

#endif // !defined(AFX_PATROLMAN_H__478F2C1B_CE54_4A21_8E4F_68570ADE68BB__INCLUDED_)

⌨️ 快捷键说明

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