28 lines
515 B
C++
28 lines
515 B
C++
// Create Time: 2023-10-25 09:53:34
|
|
|
|
#pragma once
|
|
#include "DAO.h"
|
|
|
|
namespace DBPlatformSpace
|
|
{
|
|
/// T_SegmentMT
|
|
class SegmentMTDAO : public subDBDAO
|
|
{
|
|
public:
|
|
string _segmentType; ///<segmentType
|
|
string _endNodeRef; ///<EndNodeRef
|
|
|
|
ODI SegmentMTDAO();
|
|
virtual ODI ~SegmentMTDAO();
|
|
|
|
|
|
ODI virtual Mapper* createMapper();
|
|
ODI static DAO* createObject();
|
|
|
|
|
|
static ODI ResultMsg FindAll(list<SegmentMTDAO*> & pnewlist);
|
|
|
|
static ODI ResultMsg FindByID(int id, SegmentMTDAO * &pnewdao);
|
|
};
|
|
}
|