34 lines
825 B
C++
34 lines
825 B
C++
#pragma once
|
|
#include "DAO.h"
|
|
|
|
namespace DBPlatformSpace
|
|
{
|
|
/// FPSO甲板纵桁
|
|
class Fpso_Tool_Deck_Longi_GirderDAO : public subDBDAO
|
|
{
|
|
public:
|
|
double _a; ///<P到两端支点较大距离
|
|
double _b; ///<甲板纵桁支撑面积平均宽度
|
|
double _beff; ///<有效带板宽度
|
|
int _dimension; ///<型材ID
|
|
double _l; ///<甲板纵桁跨距
|
|
int _material; ///<材料ID
|
|
int _n; ///<甲板层数
|
|
int _n_load; ///<集中载荷个数
|
|
double _p; ///<集中载荷值
|
|
double _tp; ///<带板厚度
|
|
|
|
ODI Fpso_Tool_Deck_Longi_GirderDAO();
|
|
virtual ODI ~Fpso_Tool_Deck_Longi_GirderDAO();
|
|
|
|
|
|
ODI virtual Mapper* createMapper();
|
|
ODI static DAO* createObject();
|
|
|
|
|
|
static ODI ResultMsg FindAll(list<Fpso_Tool_Deck_Longi_GirderDAO*> & pnewlist);
|
|
|
|
static ODI ResultMsg FindByID(int id, Fpso_Tool_Deck_Longi_GirderDAO * &pnewdao);
|
|
};
|
|
}
|