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

📄 jlself.h

📁 毕业生信息管理系统的基本功能是对毕业生的信息进行管理
💻 H
字号:
// JLSelf.h: interface for the CJLSelf class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_JLSELF_H__73A1A5DA_F4B5_42E7_B159_98E9F46940E0__INCLUDED_)
#define AFX_JLSELF_H__73A1A5DA_F4B5_42E7_B159_98E9F46940E0__INCLUDED_

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

class CJLSelf  
{
public:
	CJLSelf();
	virtual ~CJLSelf();

	int GetStu_id();
	void SetStu_id(int iStu_id);
	CString GetJianLi();
	void SetJianLi(CString cJianLi);

	void sql_Delete ( CString cEmpId );
	void sql_Insert ( );
	void sql_Update ( CString cEmpId );
	void GetData ( CString cEmpId );


public:
	int Stu_id;     //学生学号
	CString JianLi;  //个人简历

};

#endif // !defined(AFX_JLSELF_H__73A1A5DA_F4B5_42E7_B159_98E9F46940E0__INCLUDED_)

⌨️ 快捷键说明

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