DPS/include/TOTAL/FramedefineDAO.h

26 lines
511 B
C
Raw Permalink Normal View History

2025-06-23 10:41:33 +08:00
#pragma once
#include "DAO.h"
namespace DBPlatformSpace
{
2025-06-23 18:01:09 +08:00
/// 肋位定义表
2025-06-23 10:41:33 +08:00
class FramedefineDAO : public subDBDAO
{
public:
2025-06-23 18:01:09 +08:00
int _startFrameNo; ///<起始肋位号=上一行的终止肋位号
double _frameDistance; ///<肋距
2025-06-23 10:41:33 +08:00
ODI FramedefineDAO();
ODI ~FramedefineDAO();
ODI virtual Mapper* createMapper();
ODI static DAO* createObject();
static ODI ResultMsg FindAll(list<FramedefineDAO*> & pnewlist);
static ODI ResultMsg FindByID(int id, FramedefineDAO * &pnewdao);
};
}