DPS/include/2D/D2_PSMPMAPlateDAO.h

33 lines
807 B
C++
Raw 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
{
/// 2D PSMPMAPlatePSMPMAPlate
class D2_PSMPMAPlateDAO : public subDBDAO
{
public:
int _appID; ///<PSMPMAPlate긍뵀
int _materailID; ///<충겼꼼죕긍쯤
int _pSMPMAID; ///<杰橄PSMPMAID뵀
double _webThickness; ///<많겼비똑
double _webWidth; ///<많겼욱똑
ODI D2_PSMPMAPlateDAO();
virtual ODI ~D2_PSMPMAPlateDAO();
ODI virtual Mapper* createMapper();
ODI static DAO* createObject();
static ODI ResultMsg FindAll(list<D2_PSMPMAPlateDAO*> & pnewlist);
static ODI ResultMsg FindByID(int id, D2_PSMPMAPlateDAO * &pnewdao);
static ResultMsg ODI FindByAppID(int appID, list<D2_PSMPMAPlateDAO*>&newlist);
static ResultMsg ODI FindByPSMPMAID(int pSMPMAID, list<D2_PSMPMAPlateDAO*>&newlist);
};
}