| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #ifndef _DBDEFINE_
- #define _DBDEFINE_
- #include <string>
- using namespace std;
- typedef struct tag_SOAP_SUBMIT_SMS
- {
- int id;
- string recverid;
- string recvertel;
- string messagecontent;
- string recverphonetype;
- int inout;
- string sendtime;
- string cardtime;
- int schoolid;
- int classid;
- string rfidno;
- tag_SOAP_SUBMIT_SMS()
- {
- id = 0;
- recverid = "";
- recvertel = "";
- messagecontent = "";
- recverphonetype = "";
- inout= 0;
- sendtime = "";
- cardtime ="";
- schoolid = 0;
- classid = 0;
- rfidno = "";
- }
- }SOAP_SUBMIT_SMS;
- #ifdef _USRDLL
- #define RFIDAPI _declspec(dllexport)
- #else
- #define RFIDAPI _declspec(dllimport)
- #endif //_USRDLL
- #define BoolType(b) b?true:false
- #endif
|