DPS/include/SDP/Csr_Tools_BulwarkplateDAO.h

33 lines
923 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include "DAO.h"
namespace DBPlatformSpace
{
/// SDP舷墙板
class Csr_Tools_BulwarkplateDAO : public subDBDAO
{
public:
double _h_blwk; ///<舷墙高度m
int _ispassed; ///<计算结果数据:是否满足:是或否
double _k; ///<材料系数: 0.680.720.781可选
int _materialID; ///<板材料
double _reh; ///<板材料屈曲强度
double _s; ///<骨材间距mm
double _t; ///<提供板厚mm
double _t_req; ///<计算结果数据要求板厚mm
int _tier; ///<甲板室位置:第一层,第二层,三层及以上
ODI Csr_Tools_BulwarkplateDAO();
ODI ~Csr_Tools_BulwarkplateDAO();
ODI virtual Mapper* createMapper();
ODI static DAO* createObject();
static ODI ResultMsg FindAll(list<Csr_Tools_BulwarkplateDAO*> & pnewlist);
static ODI ResultMsg FindByID(int id, Csr_Tools_BulwarkplateDAO * &pnewdao);
};
}