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

📄 icmodulclass.cpp

📁 快餐管理系统 这个快餐管理系统,实现了实际数据库管理功能,能给相关开发的朋友提供很好的借鉴
💻 CPP
字号:
// ICModulClass.cpp: implementation of the CICModulClass class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "FastSellStore.h"
#include "ICModulClass.h"

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

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

CICModulClass::CICModulClass()
{

}

CICModulClass::~CICModulClass()
{

}

void CICModulClass::SetType (CString cType)
{
	this->Type = cType;
}

void CICModulClass::SetBrand (CString cBrand)
{
	this->Brand = cBrand;
}

void CICModulClass::SetLotno (CString cLotno)
{
	this->Lotno = cLotno;
}

void CICModulClass::SetPacking (CString cPacking)
{
	this->Packing = cPacking;
}

void CICModulClass::SetCount (long lCount)
{
	this->Count = lCount;
}

void CICModulClass::SetMemo (CString cMemo)
{
	this->Memo = cMemo;
}

CString CICModulClass::GetType()
{
	return this->Type;
}

CString CICModulClass::GetBrand()
{
	return this->Brand;
}

CString CICModulClass::GetLotno()
{
	return this->Lotno;
}

CString CICModulClass::GetPacking()
{
	return this->Packing;
}

long CICModulClass::GetCount()
{
	return this->Count;
}

CString CICModulClass::GetMdemo()
{
	return this->Memo;
}

⌨️ 快捷键说明

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