DPS/include/SDP/Sdp_TankInfoDAO.h

31 lines
724 B
C
Raw Permalink Normal View History

2025-06-23 10:41:33 +08:00
#pragma once
#include "DAO.h"
namespace DBPlatformSpace
{
2025-06-23 18:01:09 +08:00
/// 舱室列表
2025-06-23 10:41:33 +08:00
class Sdp_TankInfoDAO : public subDBDAO
{
public:
2025-06-23 18:01:09 +08:00
int _aft_frame; ///<后端肋位
double _aft_offsetx; ///<后端偏移
int _corrosion_type; ///<舱室用途(腐蚀)
int _create_type; ///<舱室创建来源
int _fore_frame; ///<前端肋位
double _fore_offsetx; ///<前端偏移
int _test_type; ///<舱室类型(试验)
2025-06-23 10:41:33 +08:00
ODI Sdp_TankInfoDAO();
ODI ~Sdp_TankInfoDAO();
ODI virtual Mapper* createMapper();
ODI static DAO* createObject();
static ODI ResultMsg FindAll(list<Sdp_TankInfoDAO*> & pnewlist);
static ODI ResultMsg FindByID(int id, Sdp_TankInfoDAO * &pnewdao);
};
}