2025-06-23 10:41:33 +08:00
|
|
|
#pragma once
|
|
|
|
#include "DAO.h"
|
|
|
|
|
|
|
|
namespace DBPlatformSpace
|
|
|
|
{
|
2025-06-23 18:01:09 +08:00
|
|
|
/// 2D横向板列
|
2025-06-23 10:41:33 +08:00
|
|
|
class D2_TransPlateDAO : public subDBDAO
|
|
|
|
{
|
|
|
|
public:
|
2025-06-23 18:01:09 +08:00
|
|
|
int _appID; ///<板列编号
|
|
|
|
double _bendReduceFactor; ///<弯曲折减因子
|
|
|
|
int _materailID; ///<材料编码
|
|
|
|
int _panelID; ///<所属板架ID号
|
|
|
|
double _shearReduceFactor; ///<剪切折减因子
|
|
|
|
double _thickness; ///<板厚
|
|
|
|
int _eomID; ///<几何ID
|
|
|
|
int _uleID; ///<规范结构属性
|
2025-06-23 10:41:33 +08:00
|
|
|
|
|
|
|
ODI D2_TransPlateDAO();
|
|
|
|
ODI ~D2_TransPlateDAO();
|
|
|
|
|
|
|
|
|
|
|
|
ODI virtual Mapper* createMapper();
|
|
|
|
ODI static DAO* createObject();
|
|
|
|
|
|
|
|
|
|
|
|
static ODI ResultMsg FindAll(list<D2_TransPlateDAO*> & pnewlist);
|
|
|
|
|
|
|
|
static ODI ResultMsg FindByID(int id, D2_TransPlateDAO * &pnewdao);
|
|
|
|
|
|
|
|
static ResultMsg ODI FindByPanelID(int panelID, list<D2_TransPlateDAO*>&newlist);
|
|
|
|
|
|
|
|
// [11/5/2021 wwu]
|
|
|
|
ODI ResultMsg delAllByPanelID(int panelId, int commitType = COMMIT_T_IMMEDIATELY);
|
|
|
|
};
|
|
|
|
}
|