33 lines
728 B
C
33 lines
728 B
C
|
// Create Time: 2023-10-25 09:53:34
|
||
|
|
||
|
#pragma once
|
||
|
#include "DAO.h"
|
||
|
|
||
|
namespace DBPlatformSpace
|
||
|
{
|
||
|
/// T_LpanelMT
|
||
|
class LpanelMTDAO : public subDBDAO
|
||
|
{
|
||
|
public:
|
||
|
string _guid; ///<guid
|
||
|
string _type; ///<Type
|
||
|
string _belongsToPSMOrPMA; ///<BelongsToPSMOrPMA
|
||
|
string _geomIDList; ///<GeomIDList
|
||
|
string _plateIDList; ///<PlateIDList
|
||
|
string _lstiffenerIDList; ///<LstiffenerIDList
|
||
|
string _tstiffenerIDList; ///<TstiffenerIDList
|
||
|
|
||
|
ODI LpanelMTDAO();
|
||
|
virtual ODI ~LpanelMTDAO();
|
||
|
|
||
|
|
||
|
ODI virtual Mapper* createMapper();
|
||
|
ODI static DAO* createObject();
|
||
|
|
||
|
|
||
|
static ODI ResultMsg FindAll(list<LpanelMTDAO*> & pnewlist);
|
||
|
|
||
|
static ODI ResultMsg FindByID(int id, LpanelMTDAO * &pnewdao);
|
||
|
};
|
||
|
}
|