⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dispensereport.h

📁 联通接收发送新程序
💻 H
字号:
#ifndef _DISPENSE_REPORT_H__
#define _DISPENSE_REPORT_H__

#include "DB.h"
#include "commondef.h"

class CDispenseReport  
{
public:
	CDispenseReport(XW_Connection &conn = DefaultConnect );
	virtual ~CDispenseReport();
	
	int InsertWait( StruDispense &stDispense ) ;
	int SetReport( StruReport &stReport ) ;
	
	inline void SetTbName( const char *sDispReportTbName,const char *sDispLogTbName )
	{
		t_dispense_report.SetTableName( sDispReportTbName ) ;
		t_dispense_waitlog.SetTableName( sDispLogTbName ) ;
	}

private:
	XW_Connection &Connect ;
	OTime oTime ;
	char pcSql[ 512 ] ;

	T_DISPENSE_MOBILE_WAITLOG  t_dispense_report ;
	T_DISPENSE_MOBILE_WAITLOG t_dispense_waitlog ;

};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -