• 大小: 1.91MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-15
  • 语言: C/C++
  • 标签: 教职工  管理  

资源简介

利用MFC数据库知识建立的教职工管理系统,能够实现对人员基本信息的管理,如新增,删除,修改,查询等等

资源截图

代码片段和文件信息

// Employee.cpp: implementation of the CEmployee class.
//
//////////////////////////////////////////////////////////////////////

#include “stdafx.h“
#include “YG.h“
#include “Employee.h“
#include “YGDoc.h“

IMPLEMENT_SERIAL(CEmployeeCobject0)
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CEmployee::CEmployee()
{

}

CEmployee::~CEmployee()
{

}
void CEmployee::Serialize(CArchive &ar)
{
Cobject::Serialize(ar);
if (ar.IsStoring())
{
{
ar << num
<< name
   << sex
   << marrige
   << year
   << month
   << post
   << degree
   << payment;
}
}
else
{
ar >> num
>> name
   >> sex
   >> marrige
   >> year
   >> month
   >> post
   >> degree
   >> payment;
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件         89  2008-09-07 21:38  教职工管理系统\couple

     文件      13413  2009-09-16 15:03  教职工管理系统\Debug\Employee.obj

     文件      20045  2009-09-16 15:03  教职工管理系统\Debug\MainFrm.obj

     文件      16742  2009-09-16 15:03  教职工管理系统\Debug\NewInfoDlg.obj

     文件      14744  2009-09-16 15:03  教职工管理系统\Debug\SEARCH.obj

     文件     105744  2009-09-16 15:03  教职工管理系统\Debug\StdAfx.obj

     文件     222208  2009-09-16 15:03  教职工管理系统\Debug\vc60.idb

     文件     372736  2009-09-16 15:03  教职工管理系统\Debug\vc60.pdb

     文件     139344  2009-09-16 15:03  教职工管理系统\Debug\YG.exe

     文件     377156  2009-09-16 15:03  教职工管理系统\Debug\YG.ilk

     文件      23048  2009-09-16 15:03  教职工管理系统\Debug\YG.obj

     文件    5505248  2009-09-16 15:03  教职工管理系统\Debug\YG.pch

     文件     377856  2009-09-16 15:03  教职工管理系统\Debug\YG.pdb

     文件       9836  2009-09-16 15:03  教职工管理系统\Debug\YG.res

     文件      18963  2009-09-16 15:03  教职工管理系统\Debug\YGDoc.obj

     文件      49227  2009-09-16 15:03  教职工管理系统\Debug\YGView.obj

     文件       1010  2008-09-05 19:08  教职工管理系统\Employee.cpp

     文件        706  2008-09-05 17:42  教职工管理系统\Employee.h

     文件       2503  2008-09-01 01:27  教职工管理系统\MainFrm.cpp

     文件       1581  2008-09-01 01:27  教职工管理系统\MainFrm.h

     文件       2009  2008-09-07 01:54  教职工管理系统\NewInfoDlg.cpp

     文件       1449  2008-09-07 01:49  教职工管理系统\NewInfoDlg.h

     文件       4215  2008-09-01 01:27  教职工管理系统\ReadMe.txt

     文件       1078  2008-09-01 01:28  教职工管理系统\res\Toolbar.bmp

     文件       1078  2008-09-01 01:28  教职工管理系统\res\YG.ico

     文件        394  2008-09-01 01:28  教职工管理系统\res\YG.rc2

     文件       1078  2008-09-01 01:28  教职工管理系统\res\YGDoc.ico

     文件       2012  2008-09-06 12:46  教职工管理系统\resource.h

     文件       2907  2008-09-07 01:05  教职工管理系统\SEARCH.cpp

     文件       1339  2008-09-07 01:05  教职工管理系统\SEARCH.h

............此处省略25个文件信息

评论

共有 条评论