dayplanset.h

来自「汽车站售票管理系统,源代码完整无错」· C头文件 代码 · 共 54 行

H
54
字号
#if !defined(AFX_DAYPLANSET_H__3E5E1563_6A85_4628_849A_ECEB9C562AC4__INCLUDED_)
#define AFX_DAYPLANSET_H__3E5E1563_6A85_4628_849A_ECEB9C562AC4__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// DayPlanSet.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CDayPlanSet recordset

class CDayPlanSet : public CRecordset
{
public:
	CDayPlanSet* SearchById(int id);
	CDayPlanSet(CDatabase* pDatabase = NULL);
	DECLARE_DYNAMIC(CDayPlanSet)

// Field/Param Data
	//{{AFX_FIELD(CDayPlanSet, CRecordset)
	long	m_ID;
	CString	m_plan_date;
	long	m_route_id;
	long	m_bus_id;
	CString	m_bus_number;
	long	m_bus_type;
	long	m_seat_left;
	CString	m_fc_time;
	long	m_run_state;
	//}}AFX_FIELD


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CDayPlanSet)
	public:
	virtual CString GetDefaultConnect();    // Default connection string
	virtual CString GetDefaultSQL();    // Default SQL for Recordset
	virtual void DoFieldExchange(CFieldExchange* pFX);  // RFX support
	//}}AFX_VIRTUAL

// Implementation
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_DAYPLANSET_H__3E5E1563_6A85_4628_849A_ECEB9C562AC4__INCLUDED_)

⌨️ 快捷键说明

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