DPS/include/SDP/Fpso_Ruled_Export_SectionDAO.h

29 lines
652 B
C++

#pragma once
#include "DAO.h"
namespace DBPlatformSpace
{
/// FPSO规范动载荷包络值导出剖面表
class Fpso_Ruled_Export_SectionDAO : public subDBDAO
{
public:
double _centerCz; ///<中底高度
double _cy; ///<形心y
double _cz; ///<形心z
double _flatCb; ///<平底宽度
string _frame; ///<肋位:肋位表达式
ODI Fpso_Ruled_Export_SectionDAO();
virtual ODI ~Fpso_Ruled_Export_SectionDAO();
ODI virtual Mapper* createMapper();
ODI static DAO* createObject();
static ODI ResultMsg FindAll(list<Fpso_Ruled_Export_SectionDAO*> & pnewlist);
static ODI ResultMsg FindByID(int id, Fpso_Ruled_Export_SectionDAO * &pnewdao);
};
}