31 lines
755 B
C++
31 lines
755 B
C++
#pragma once
|
||
#include "DAO.h"
|
||
|
||
namespace DBPlatformSpace
|
||
{
|
||
/// 2D水平槽型纵舱壁槽条信息
|
||
class D2_CorrugatedSlotDAO : public subDBDAO
|
||
{
|
||
public:
|
||
double _a; ///<槽条面板宽度
|
||
double _b; ///<槽条腹板宽度
|
||
double _c; ///<槽深
|
||
int _index; ///<槽条序号
|
||
int _paraID; ///<水平槽型纵舱壁ID,指向水平槽型纵舱壁
|
||
|
||
ODI D2_CorrugatedSlotDAO();
|
||
ODI ~D2_CorrugatedSlotDAO();
|
||
|
||
|
||
ODI virtual Mapper* createMapper();
|
||
ODI static DAO* createObject();
|
||
|
||
|
||
static ODI ResultMsg FindAll(list<D2_CorrugatedSlotDAO*> & pnewlist);
|
||
|
||
static ODI ResultMsg FindByID(int id, D2_CorrugatedSlotDAO * &pnewdao);
|
||
|
||
static ResultMsg ODI FindByParaID(int paraID, list<D2_CorrugatedSlotDAO*>&newlist);
|
||
};
|
||
}
|