icmodulclass.cpp

来自「快餐管理系统 这个快餐管理系统,实现了实际数据库管理功能,能给相关开发的朋友提」· C++ 代码 · 共 87 行

CPP
87
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?