DPS/include/SDP/Sdp_Tank_BcVolumeDAO.h

27 lines
549 B
C++
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
{
/// …¢ªı¥¨≤’»›±Ì
class Sdp_Tank_BcVolumeDAO : public subDBDAO
{
public:
double _h; ///<∏fl∂»
int _tankID; ///<≤ “id
double _vol; ///<H¥¶≤»
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);
};
}