📄 icmodulclass.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 + -