📄 borrowcommand.h
字号:
// BorrowCommand.h: interface for the CBorrowCommand class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_BORROWCOMMAND_H__8C24709B_A8C8_46CD_A97D_61224786B460__INCLUDED_)
#define AFX_BORROWCOMMAND_H__8C24709B_A8C8_46CD_A97D_61224786B460__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "DBCommand.h"
class CBorrowCommand : public CDBCommand
{
public:
//进行借用
//返回值为借用号
CString DoBorrow();
//各项借用信息
CString m_MaterialNum;
CString m_Count;
CString m_Department;
CString m_Use;
CString m_State;
CString m_Jsr;
CString m_Lqr;
CBorrowCommand();
virtual ~CBorrowCommand();
private:
//得到当前最大借用号
int GetMaxBorrowID();
};
#endif // !defined(AFX_BORROWCOMMAND_H__8C24709B_A8C8_46CD_A97D_61224786B460__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -