DPS/include/TOTAL/BLocalTableDAO.h

34 lines
867 B
C++
Raw 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
{
/// 局部船宽表
class BLocalTableDAO : public subDBDAO
{
public:
int _currentState; ///<当前状态是待删除、已修改等
string _endFrame; ///<终止肋位
int _endFrameNo; ///<终止肋位号
double _endFrameOffset; ///<终止肋位偏移
int _index; ///<排序编号从0开始使用findall接口获取时list为排序后结果
double _localBreadth; ///<局部船宽
string _startFrame; ///<起始肋位
int _startFrameNo; ///<起始肋位号
double _startFrameOffset; ///<起始肋位偏移
string _tankName; ///<舱段名称(新增)
ODI BLocalTableDAO();
virtual ODI ~BLocalTableDAO();
ODI virtual Mapper* createMapper();
ODI static DAO* createObject();
static ODI ResultMsg FindAll(list<BLocalTableDAO*> & pnewlist);
static ODI ResultMsg FindByID(int id, BLocalTableDAO * &pnewdao);
};
}