DPS/include/TOTAL/S_P_EndConnectDataDAO.h

38 lines
1.3 KiB
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include "DAO.h"
namespace DBPlatformSpace
{
/// S_P_端部连接库
class S_P_EndConnectDataDAO : public subDBDAO
{
public:
int _code; ///<端部连接类型编码 每种类型唯一 不可更改
string _describe; ///<描述
int _flipFlag; ///<反向勾选框是否勾选
string _flipPictureFileName; ///<反向图片路径+名称
string _gUID; ///<GUID值用于唯一表示一条记录不可更改
string _parameter; ///<端部连接类型的所有参数组合
string _pictureFileName; ///<正向图片路径+名称
int _pictureID; ///<图片类型 代表端部连接名称里类型n里的n
int _type; ///<库数据类型。0、端部连接库数据 1、腹板加强筋库数据 2、穿越孔库数据
int _useFlag; ///<是否已使用标志
ODI S_P_EndConnectDataDAO();
virtual ODI ~S_P_EndConnectDataDAO();
ODI virtual Mapper* createMapper();
ODI static DAO* createObject();
ODI ResultMsg delAllByType(int tableType, int commitType = COMMIT_T_IMMEDIATELY);
static ODI ResultMsg FindAll(list<S_P_EndConnectDataDAO*> & pnewlist);
static ODI ResultMsg FindByID(int id, S_P_EndConnectDataDAO * &pnewdao);
static ResultMsg ODI FindByType(int type, list<S_P_EndConnectDataDAO*>&newlist);
};
}