DPS/include/2D/D2_CorrugatedSlotDAO.h

31 lines
755 B
C
Raw Permalink Normal View History

2025-06-23 10:41:33 +08:00
#pragma once
#include "DAO.h"
namespace DBPlatformSpace
{
2025-06-23 18:01:09 +08:00
/// 2D水平槽型纵舱壁槽条信息
2025-06-23 10:41:33 +08:00
class D2_CorrugatedSlotDAO : public subDBDAO
{
public:
2025-06-23 18:01:09 +08:00
double _a; ///<槽条面板宽度
double _b; ///<槽条腹板宽度
double _c; ///<槽深
int _index; ///<槽条序号
int _paraID; ///<水平槽型纵舱壁ID指向水平槽型纵舱壁
2025-06-23 10:41:33 +08:00
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);
};
}