DPS/include/forTest/PlateOfLPanelMTDAO.h

28 lines
537 B
C
Raw Normal View History

2025-06-23 10:41:33 +08:00
// Create Time: 2023-10-25 09:53:34
#pragma once
#include "DAO.h"
namespace DBPlatformSpace
{
/// T_PlateOfLPanelMT
class PlateOfLPanelMTDAO : public subDBDAO
{
public:
double _width; ///<Width
double _thickness; ///<Thickness
ODI PlateOfLPanelMTDAO();
virtual ODI ~PlateOfLPanelMTDAO();
ODI virtual Mapper* createMapper();
ODI static DAO* createObject();
static ODI ResultMsg FindAll(list<PlateOfLPanelMTDAO*> & pnewlist);
static ODI ResultMsg FindByID(int id, PlateOfLPanelMTDAO * &pnewdao);
};
}