32 lines
675 B
C
32 lines
675 B
C
|
// Create Time: 2023-10-25 09:53:34
|
||
|
|
||
|
#pragma once
|
||
|
#include "DAO.h"
|
||
|
|
||
|
namespace DBPlatformSpace
|
||
|
{
|
||
|
/// T_TpanelMT
|
||
|
class TpanelMTDAO : public subDBDAO
|
||
|
{
|
||
|
public:
|
||
|
string _guid; ///<guid
|
||
|
string _type; ///<Type
|
||
|
string _outerContourIDList; ///<OuterContourIDList
|
||
|
string _seamIDList; ///<SeamIDList
|
||
|
string _plateIDList; ///<PlateIDList
|
||
|
string _stiffenerIDList; ///<StiffenerIDList
|
||
|
|
||
|
ODI TpanelMTDAO();
|
||
|
virtual ODI ~TpanelMTDAO();
|
||
|
|
||
|
|
||
|
ODI virtual Mapper* createMapper();
|
||
|
ODI static DAO* createObject();
|
||
|
|
||
|
|
||
|
static ODI ResultMsg FindAll(list<TpanelMTDAO*> & pnewlist);
|
||
|
|
||
|
static ODI ResultMsg FindByID(int id, TpanelMTDAO * &pnewdao);
|
||
|
};
|
||
|
}
|