This commit is contained in:
Kane Wang 2020-06-27 22:44:15 +08:00
parent 73140366b9
commit 21c3f5fe75
1 changed files with 46 additions and 45 deletions

View File

@ -1,24 +1,24 @@
 
#pragma once #pragma once
#include <QString> #include <string>
#include <iostream> #include <iostream>
class repair_suggestion_record class repair_suggestion_record
{ {
public: public:
repair_suggestion_record(const QString& , repair_suggestion_record(const std::wstring& ,
const QString& , const std::wstring& ,
const QString& , const std::wstring& ,
const QString& , const std::wstring& ,
const QString& , const std::wstring& ,
const QString& , const std::wstring& ,
const QString& , const std::wstring& ,
const QString& , const std::wstring& ,
const QString& , const std::wstring& ,
const QString& , const std::wstring& ,
const QString& ) const std::wstring& )
: _(), : _(),
_(), _(),
_(), _(),
@ -34,6 +34,7 @@ public:
} }
repair_suggestion_record(const repair_suggestion_record& other) repair_suggestion_record(const repair_suggestion_record& other)
: _(other._), : _(other._),
_(other._), _(other._),
@ -101,126 +102,126 @@ public:
} }
QString get工单号() const std::wstring get工单号() const
{ {
return _; return _;
} }
void set工单号(const QString& ) void set工单号(const std::wstring& )
{ {
_ = ; _ = ;
} }
QString get工单类型() const std::wstring get工单类型() const
{ {
return _; return _;
} }
void set工单类型(const QString& ) void set工单类型(const std::wstring& )
{ {
_ = ; _ = ;
} }
QString get报案号() const std::wstring get报案号() const
{ {
return _; return _;
} }
void set报案号(const QString& ) void set报案号(const std::wstring& )
{ {
_ = ; _ = ;
} }
QString get推荐车商代码() const std::wstring get推荐车商代码() const
{ {
return _; return _;
} }
void set推荐车商代码(const QString& ) void set推荐车商代码(const std::wstring& )
{ {
_ = ; _ = ;
} }
QString get推荐车商名称() const std::wstring get推荐车商名称() const
{ {
return _; return _;
} }
void set推荐车商名称(const QString& ) void set推荐车商名称(const std::wstring& )
{ {
_ = ; _ = ;
} }
QString get出险日期() const std::wstring get出险日期() const
{ {
return _; return _;
} }
void set出险日期(const QString& ) void set出险日期(const std::wstring& )
{ {
_ = ; _ = ;
} }
QString get车牌号() const std::wstring get车牌号() const
{ {
return _; return _;
} }
void set车牌号(const QString& ) void set车牌号(const std::wstring& )
{ {
_ = ; _ = ;
} }
QString get品牌名称() const std::wstring get品牌名称() const
{ {
return _; return _;
} }
void set品牌名称(const QString& ) void set品牌名称(const std::wstring& )
{ {
_ = ; _ = ;
} }
QString get短信类型() const std::wstring get短信类型() const
{ {
return _; return _;
} }
void set短信类型(const QString& ) void set短信类型(const std::wstring& )
{ {
_ = ; _ = ;
} }
QString get发送时间() const std::wstring get发送时间() const
{ {
return _; return _;
} }
void set发送时间(const QString& ) void set发送时间(const std::wstring& )
{ {
_ = ; _ = ;
} }
QString get数据来源() const std::wstring get数据来源() const
{ {
return _; return _;
} }
void set数据来源(const QString& ) void set数据来源(const std::wstring& )
{ {
_ = ; _ = ;
} }
private: private:
QString _; std::wstring _;
QString _; std::wstring _;
QString _; std::wstring _;
QString _; std::wstring _;
QString _; std::wstring _;
QString _; std::wstring _;
QString _; std::wstring _;
QString _; std::wstring _;
QString _; std::wstring _;
QString _; std::wstring _;
QString _; std::wstring _;
}; };