DPS/include/2D/D2_CorrugatedSlotDAO.h

31 lines
755 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#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);
};
}