DPS/include/SDP/Sdp_Tank_BcVolumeDAO.h

27 lines
549 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_Tank_BcVolumeDAO : public subDBDAO
{
public:
2025-06-23 18:01:09 +08:00
double _h; ///<∏fl∂»
int _tankID; ///<≤ “id
double _vol; ///<H¥¶≤»
2025-06-23 10:41:33 +08:00
ODI Sdp_Tank_BcVolumeDAO();
ODI ~Sdp_Tank_BcVolumeDAO();
ODI virtual Mapper* createMapper();
ODI static DAO* createObject();
static ODI ResultMsg FindAll(list<Sdp_Tank_BcVolumeDAO*> & pnewlist);
static ODI ResultMsg FindByID(int id, Sdp_Tank_BcVolumeDAO * &pnewdao);
};
}