2025-06-23 10:41:33 +08:00
|
|
|
#pragma once
|
|
|
|
#include "DAO.h"
|
|
|
|
|
|
|
|
namespace DBPlatformSpace
|
|
|
|
{
|
2025-06-23 18:01:09 +08:00
|
|
|
/// FPSO规范动载荷包络值导出剖面表
|
2025-06-23 10:41:33 +08:00
|
|
|
class Fpso_Ruled_Export_SectionDAO : public subDBDAO
|
|
|
|
{
|
|
|
|
public:
|
2025-06-23 18:01:09 +08:00
|
|
|
double _centerCz; ///<中底高度
|
|
|
|
double _cy; ///<形心y
|
|
|
|
double _cz; ///<形心z
|
|
|
|
double _flatCb; ///<平底宽度
|
|
|
|
string _frame; ///<肋位:肋位表达式
|
2025-06-23 10:41:33 +08:00
|
|
|
|
|
|
|
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);
|
|
|
|
};
|
|
|
|
}
|