📄 icmodulclass.h
字号:
// ICModulClass.h: interface for the CICModulClass class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_ICMODULCLASS_H__D82D87E8_5B2D_4295_A073_982A62EBDEA2__INCLUDED_)
#define AFX_ICMODULCLASS_H__D82D87E8_5B2D_4295_A073_982A62EBDEA2__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CICModulClass
{
public:
CICModulClass();
virtual ~CICModulClass();
public:
/* DataBase Operations */
//void GetData();
void sql_Insert ();
public:
/* Members Operations */
void SetType (CString cType);
void SetBrand (CString cBrand);
void SetLotno (CString cLotno);
void SetPacking (CString cPacking);
void SetCount (long lCount);
void SetMemo (CString cMemo);
CString GetType (void);
CString GetBrand (void);
CString GetLotno (void);
CString GetPacking (void);
long GetCount (void);
CString GetMdemo (void);
private:
CString Type; // 型号
CString Brand; // 品牌
CString Lotno; // 批号
CString Packing; // 封装
long Count; // 数量
CString Memo; // 备注
};
#endif // !defined(AFX_ICMODULCLASS_H__D82D87E8_5B2D_4295_A073_982A62EBDEA2__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -