DPS/include/SDP/Sdp_Tank_S20_ParamDAO.h

31 lines
802 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 Sdp_Tank_S20_ParamDAO : public subDBDAO
{
public:
double _hdb; ///<双层底高m
double _homo_dens; ///<均匀装载时本舱的货物密度t/m3
double _non_homo_dens; ///<非均匀装载时本舱的货物密度t/m3
double _sg; ///<包装货物密度如钢卷t/m3
double _perm_homo; ///<均匀装载时的货物渗透率
double _perm_non_homo; ///<非均匀装载时的货物密度渗透率
int _is_steel; ///<是否为块状货物(钢材产品)
ODI Sdp_Tank_S20_ParamDAO();
ODI ~Sdp_Tank_S20_ParamDAO();
ODI virtual Mapper* createMapper();
ODI static DAO* createObject();
static ODI ResultMsg FindAll(list<Sdp_Tank_S20_ParamDAO*> & pnewlist);
static ODI ResultMsg FindByID(int id, Sdp_Tank_S20_ParamDAO * &pnewdao);
};
}