42 lines
1.1 KiB
C
42 lines
1.1 KiB
C
|
#pragma once
|
|||
|
#include "DAO.h"
|
|||
|
|
|||
|
namespace DBPlatformSpace
|
|||
|
{
|
|||
|
/// 2Dƽ<44><C6BD><EFBFBD><EFBFBD><EFBFBD>ձ<EFBFBD>
|
|||
|
class D2_Para_PlaneTransBulkheadDAO : public subDBDAO
|
|||
|
{
|
|||
|
public:
|
|||
|
string _geoIDs; ///<<3C><><EFBFBD><EFBFBD>GeoIDs
|
|||
|
int _index; ///<<3C><><EFBFBD><EFBFBD>
|
|||
|
string _panelIDs; ///<<3C><><EFBFBD><EFBFBD>PanelIDs
|
|||
|
int _paraID; ///<ƽ<><C6BD><EFBFBD><EFBFBD><EFBFBD>ձ<EFBFBD>ID
|
|||
|
int _sectionID; ///<<3C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ID<49><44>
|
|||
|
string _xs; ///<x<><78><EFBFBD>꣬<EFBFBD>ַ<EFBFBD><D6B7><EFBFBD>С512
|
|||
|
string _ys; ///<y<><79><EFBFBD>꣬<EFBFBD>ַ<EFBFBD><D6B7><EFBFBD>С512
|
|||
|
|
|||
|
ODI D2_Para_PlaneTransBulkheadDAO();
|
|||
|
virtual ODI ~D2_Para_PlaneTransBulkheadDAO();
|
|||
|
|
|||
|
|
|||
|
ODI virtual Mapper* createMapper();
|
|||
|
ODI static DAO* createObject();
|
|||
|
|
|||
|
//_panelIDs
|
|||
|
ODI ResultMsg savePanelIDs(list<int> panelIDlist);
|
|||
|
ODI ResultMsg getPanelIDs(list<int>& panelIDlist);
|
|||
|
|
|||
|
//_geoIDs
|
|||
|
ODI ResultMsg saveGeoIDs(list<int> geoIDlist);
|
|||
|
ODI ResultMsg getGeoIDs(list<int>& geoIDlist);
|
|||
|
|
|||
|
static ODI ResultMsg FindAll(list<D2_Para_PlaneTransBulkheadDAO*> & pnewlist);
|
|||
|
|
|||
|
static ODI ResultMsg FindByID(int id, D2_Para_PlaneTransBulkheadDAO * &pnewdao);
|
|||
|
|
|||
|
static ResultMsg ODI FindByParaID(int paraID, list<D2_Para_PlaneTransBulkheadDAO*>&newlist);
|
|||
|
|
|||
|
static ResultMsg ODI FindBySectionID(int sectionID, list<D2_Para_PlaneTransBulkheadDAO*>&newlist);
|
|||
|
};
|
|||
|
}
|