icmodulclass.h

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

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