DPS/include/SDP/Fpso_Ruled_Export_LoadDAO.h

28 lines
603 B
C++

#pragma once
#include "DAO.h"
namespace DBPlatformSpace
{
/// FPSO规范动载荷包络值导出关联甲板载荷表
class Fpso_Ruled_Export_LoadDAO : public subDBDAO
{
public:
string _frame; ///<肋位:肋位表达式
double _gx; ///<重心x
double _gy; ///<重心y
double _gz; ///<重心z
ODI Fpso_Ruled_Export_LoadDAO();
virtual ODI ~Fpso_Ruled_Export_LoadDAO();
ODI virtual Mapper* createMapper();
ODI static DAO* createObject();
static ODI ResultMsg FindAll(list<Fpso_Ruled_Export_LoadDAO*> & pnewlist);
static ODI ResultMsg FindByID(int id, Fpso_Ruled_Export_LoadDAO * &pnewdao);
};
}