DPS/include/SDP/Csr_Tools_DeckAndSideDAO.h

34 lines
988 B
C++
Raw Permalink 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_DeckAndSideDAO : public subDBDAO
{
public:
int _ispassed; ///<是否满足:是或否
double _k; ///<材料系数0.68/0.72/0.78/1可选
int _materialID; ///<板材料
double _reh; ///<板材料屈曲强度
double _s; ///<骨材间距smm
int _sheating; ///<甲板敷层:是或否
int _strutype; ///<构件类型:露天甲板,非露天甲板,上建侧壁可选
double _t_offer; ///<提供板厚mm
double _t_req; ///<要求板厚: mm
int _tier; ///<甲板室位置:第一层/第二层/第三层及以上
ODI Csr_Tools_DeckAndSideDAO();
ODI ~Csr_Tools_DeckAndSideDAO();
ODI virtual Mapper* createMapper();
ODI static DAO* createObject();
static ODI ResultMsg FindAll(list<Csr_Tools_DeckAndSideDAO*> & pnewlist);
static ODI ResultMsg FindByID(int id, Csr_Tools_DeckAndSideDAO * &pnewdao);
};
}