From bcf8d8c62fdf61c4c3091bbf0db32383cbd5ea9e Mon Sep 17 00:00:00 2001 From: pansen <pansen626@sina.com> Date: 星期四, 28 二月 2019 14:24:09 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/yw.1.2.fixbug' into yw.1.2 --- QiaoJiaSystem/DataManagerServer/vss/model/VssLocalSettingTbl.h | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 44 insertions(+), 0 deletions(-) diff --git a/QiaoJiaSystem/DataManagerServer/vss/model/VssLocalSettingTbl.h b/QiaoJiaSystem/DataManagerServer/vss/model/VssLocalSettingTbl.h new file mode 100755 index 0000000..d377f83 --- /dev/null +++ b/QiaoJiaSystem/DataManagerServer/vss/model/VssLocalSettingTbl.h @@ -0,0 +1,44 @@ + +#ifndef VSSLOCALSETTINGTBL_H +#define VSSLOCALSETTINGTBL_H +#include <mysql++.h> +#include <string> +using std::string; + +#define VssLocalSettingTbl_ID "ID" +#define VssLocalSettingTbl_ServerIp "ServerIp" +#define VssLocalSettingTbl_ServerPort "ServerPort" +#define VssLocalSettingTbl_ServerId "ServerId" +#define VssLocalSettingTbl_UserAuthId "UserAuthId" +#define VssLocalSettingTbl_Password "Password" +#define VssLocalSettingTbl_UpdateTime "UpdateTime" + +/** + * 鏈湴鍥芥爣閰嶇疆 + */ +class VssLocalSettingTbl { +public: + int ID ; + std::string ServerIp ; + std::string ServerPort ; + std::string ServerId ; + std::string UserAuthId ; + std::string Password ; + std::string UpdateTime ; +public: + /** 鏈湴鍥芥爣閰嶇疆 鏋勯�犲嚱鏁�*/ + VssLocalSettingTbl() { + ID = 0 ; + ServerIp = "" ; + ServerPort = "" ; + ServerId = "" ; + UserAuthId = "" ; + Password = "" ; + UpdateTime = "" ; + } +}; + + +#endif //VSSLOCALSETTINGTBL_H + + -- Gitblit v1.8.0