2025-06-23 10:41:33 +08:00
|
|
|
#pragma once
|
|
|
|
#include "DAO.h"
|
|
|
|
|
|
|
|
namespace DBPlatformSpace
|
|
|
|
{
|
2025-06-23 18:01:09 +08:00
|
|
|
/// S_型材标准与子标准对应表
|
2025-06-23 10:41:33 +08:00
|
|
|
class S_ProfileStandardSubStandardDAO : public dataDictionaryDAO
|
|
|
|
{
|
|
|
|
public:
|
2025-06-23 18:01:09 +08:00
|
|
|
string _profileStandard; ///<型材类型
|
|
|
|
string _subStandard; ///<子标准
|
2025-06-23 10:41:33 +08:00
|
|
|
|
|
|
|
ODI S_ProfileStandardSubStandardDAO();
|
|
|
|
ODI ~S_ProfileStandardSubStandardDAO();
|
|
|
|
|
|
|
|
|
|
|
|
ODI virtual Mapper* createMapper();
|
|
|
|
ODI static DAO* createObject();
|
|
|
|
|
|
|
|
|
|
|
|
static ODI ResultMsg FindAll(list<S_ProfileStandardSubStandardDAO*> & pnewlist);
|
|
|
|
|
|
|
|
static ODI ResultMsg FindByID(int id, S_ProfileStandardSubStandardDAO * &pnewdao);
|
|
|
|
};
|
|
|
|
}
|