DPS/include/forTest/CompartmentMTDAO.h

35 lines
748 B
C
Raw Normal View History

2025-06-23 10:41:33 +08:00
// Create Time: 2023-10-25 10:01:59
#pragma once
#include "DAO.h"
namespace DBPlatformSpace
{
/// T_CompartmentMT
class CompartmentMTDAO : public subDBDAO
{
public:
string _guid; ///<guid
double _aftFrame; ///<AftFrame
double _aftOffset; ///<AftOffset
double _foreFrame; ///<ForeFrame
double _foreOffset; ///<ForeOffset
double _xG; ///<XG
double _yG; ///<YG
double _zG; ///<ZG
double _volume; ///<Volume
ODI CompartmentMTDAO();
virtual ODI ~CompartmentMTDAO();
ODI virtual Mapper* createMapper();
ODI static DAO* createObject();
static ODI ResultMsg FindAll(list<CompartmentMTDAO*> & pnewlist);
static ODI ResultMsg FindByID(int id, CompartmentMTDAO * &pnewdao);
};
}