亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? cc_data_struct0615.h

?? wince下對sqlserver數據庫的操作,增刪改操作,單進程單線程
?? H
?? 第 1 頁 / 共 3 頁
字號:
#pragma once

#ifndef __CC_PRIVE_DATA
#define __CC_PRIVE_DATA
#define CC_PSW_LEN			 9  //the length of the user password;
#define CC_OWNER_NAME_LEN	 21 //the length of the owner name;
#define CC_BORN_DATE_LEN	 9  //the length of the user's born date;
#define CC_IDENTI_NUM_LEN	 21 //the length of the user's certificate number; 
#define CC_CELLPHONE_LEN	 21 //the length of the user's cellular telephone;
#define CC_POSTCODE_LEN		 7  //the length of the user's postcode;
#define CC_ZONENUM_LEN	     6  //the length of the user's zonecode;
#define CC_ADDR_LEN		     61 //the length of the user's address;
#define CC_HOMEPHONE_LEN     21 //the length of the user's home phone;
#define CC_CCSERIAL_NUM_LEN	 15 //the length of the user's CC Code;
#define CC_KEEP_CODE_LEN	 10 //the length of the blank segment;
#define CC_DEVIE_NAME_LEN	 21 //the length of the device name;
#define CC_DEVICE_NUM_LEN	 21 //the length of the device number;
#define CC_SCENE_NAME_LEN	 21 //the length of the scene name;
#define CC_SCENE_DESCRIP_LEN 61 //the length of the scene description;
#define CC_TIP_CONTEN_LEN	 31 //the length of the bell's clue content
#define CC_SET_NAME_LEN	     21 //the length of the bell installer's name
#define CC_CARD_NUM_LEN	     16 //the length of the roomcard's number
#define CC_MEMB_NAME_LEN     21 //the length of the member's name
#define CC_ROOM_NAME_LEN     21 //the length of the room's name
#define CC_ROOM_DESCRIP_LEN	 61 //the length of the room's description
#define CC_RING_NAME_LEN	 21 //the length of the ring's name
#define CC_RING_PATH_LEN	 61 //the length of the ring's path
#define CC_DOOR_MAGCODE_LEN	 21 //the length of the door magnetism
#define CC_FRIEND_NAME_LEN	 21 //the length of the friend's name
#define CC_NUM_LEN			 16 //the length of the friend's number
#define CC_TITLE_LEN		 21 //the length of the memo's title
#define CC_TIPCONTENT_LEN	 101//the length of the memo's tip content
#define CC_SM_PHONE_LEN		 81 //the length of the phone which receive short message
#define CC_MAIL_NOTIFY_LEN   81 //the length of the E_mail notify
#define CC_PHONE_NUM_LEN	 81 //the length of the number of the phone which receive alarm
#define CC_EMAIL_LEN		 81 //the length of the E_mail which is used to alarm
#define CC_ALARM_TIP_LEN	 81 //the length of the alarm's tip content
#define CC_NAME_LEN			 21 //the length of the PuMei and common user's name
#define CC_OFFICEPHONE_LEN	 21 //the length of the PuMei and common user's office phone
#define CC_MAIL_LEN			 31 //the length of the PuMei and common user's E_mail
#define CC_ADDRESS_LEN		 61 //the length of the PuMei and common user's address
#define CC_REMARK_LEN		 81 //the length of the PuMei and common user's remark
#define CC_ALARM_NODE_LEN	 81 //the length of the number of the alarm node
#define CC_SPAYER_LEN		 21 //the length of the the storer's or payer's name
#define CC_SPAY_NAME_LEN	 30 //the length of the store or pay reason
#define CC_TEL_PHONE_LEN	 21 //the length of the phone number from another
#define PHONEBOOKGROUP_NAME_LEN 21
#define PHONEBOOK_NAME_LEN 21
#define PHONEBOOK_NUMBER_LEN 21

#define CC_PHOTO_PATH_LEN	 61; 
#define CC_BOROUGH_ID_LEN	 5
#define CC_PROVINCE_ID_LEN   5
#define CC_BOROUGH_NAME_LEN	 31
#define CC_PROVINCE_NAME_LEN 31
#define CC_ROOM_TYPE_NAME_LEN 21
#define CC_VOICE_TITLE_LEN	 21
#define CC_VOICE_USER_NAME_LEN	21
#define CC_VOICE_CONTEXT_LEN  61
#define CC_ALARM_NODE_NUM	10
#define CC_ALARM_ROOM_NODE_LEN	206

/*************************************************************/
/*************************************************************/
/****			Create by Eagegao  in 2004-12-17          ****/
/****		this struct identified the infomation of a    ****/
/****       user.if the infomation of the user is         ****/
/****       added,it the cell of the struct that is       ****/
/****       szKeepCode will be used as the added          ****/
/****       infomation.                                   ****/
/****       this struct won't be saved in the database    ****/
/*************************************************************/
/*************************************************************/  										
struct user_info_struct
{
	int  nCCID;								//中控ID	      int	4	由中控編號后4個字節生成
	char szLittleName[CC_OWNER_NAME_LEN];	//用戶呢稱	      char	20+1
	char szUserPsw[CC_PSW_LEN];				//用戶密碼	      char	8+1	數字,字符(不分大小寫)
	char szAdminPsw[CC_PSW_LEN];			//超級管理員密碼  char	8+1	數字,字符(不分大小寫)
	char szPhonePsw[CC_PSW_LEN];			//電話密碼	      char	8+1	數字,字符(不分大小寫)
	char szOwnName[CC_OWNER_NAME_LEN];		//戶主姓名	      char	20+1	
	char cSex;								//性別	          char	1	
	char szBornDate[CC_BORN_DATE_LEN];		//出生年月	      char	8+1	YYYYMMDD
	char cIdentiType;						//證件類型	      char	1	1_身份證, 2_軍官證
	char szIdentiNum[CC_IDENTI_NUM_LEN];   	//證件號碼	      char	20+1	
	char szCellPhone[CC_CELLPHONE_LEN];		//手機號碼	      char	21	聯系手機號碼
	char szPostCode[CC_POSTCODE_LEN];		//郵編	          char	6+1	
	char szZoneNum[CC_ZONENUM_LEN];			//區號	          char	5+1
	char szAddress[CC_ADDR_LEN];			//地址	          char	60+1	
	char szHomePhone[CC_HOMEPHONE_LEN];		//住宅電話	      char	20+1	
	char szCcSerialNum[CC_CCSERIAL_NUM_LEN];//中控編號	      char 	14+1	
	int  nCircletId;						//小區ID	      int	4	0-表示沒有選擇小區
	char szKeepCode[CC_KEEP_CODE_LEN];		//保留字段	      char	10	保留
};
/*************************************************************/
/*************************************************************/
/****			Create by Eagegao  in 2004-12-17          ****/
/****		this struct identified the infomation of a    ****/
/****       user.if the infomation of the user is         ****/
/****       added,it the cell of the struct that is       ****/
/****       szKeepCode will be used as the added          ****/
/****       infomation.                                   ****/
/****       this struct won't be saved in the database    ****/
/*************************************************************/
/*************************************************************/  										
struct pc_user_info_struct
{
	int  nID;								//用戶ID	      	 int	4	由服務器生成 
	char szUserPsw[CC_PSW_LEN];				//用戶密碼	      char	8+1	數字,字符(不分大小寫)
	char szOwnName[CC_OWNER_NAME_LEN];		//戶主姓名	      char	20+1	
	char szLittleName[CC_OWNER_NAME_LEN];	//用戶呢稱	      char	20+1
	char cSex;								//性別	          char	1	
	char szBornDate[CC_BORN_DATE_LEN];		//出生年月	      char	8+1	YYYYMMDD
	char cIdentiType;						//證件類型	      char	1	1_身份證, 2_軍官證
	char szIdentiNum[CC_IDENTI_NUM_LEN];   	//證件號碼	      char	20+1	
	char szCellPhone[CC_CELLPHONE_LEN];		//手機號碼	      char	21	聯系手機號碼
	char szMail[CC_MAIL_LEN];				//郵件			  Char	31
	char szPostCode[CC_POSTCODE_LEN];		//郵編	          char	6+1	
	char szZoneNum[CC_ZONENUM_LEN];			//區號	          char	5+1	
	char szAddress[CC_ADDR_LEN];			//地址	          char	60+1

	char szKeepCode[CC_KEEP_CODE_LEN];		//保留字段	      char	10	保留
};


/*************************************************************/
/*************************************************************/
/****			Create by Eagegao  in 2004-12-17          ****/
/****		this struct identified the infomation of a    ****/
/****       borough.if the infomation of the borough is   ****/
/****       added,it the cell of the struct that is       ****/
/****       szKeepCode will be used as the added          ****/
/****       infomation.                                   ****/
/****       this struct won't be saved in the database    ****/
/*************************************************************/
/*************************************************************/
struct borough_info_struct
{
	char szBoroughNum[CC_ZONENUM_LEN];		//區號		char	5+1		只能是數字
	int nProvinceID;							//省ID		Int		4+1	
	char szBoroughName[CC_BOROUGH_NAME_LEN];	//區名字	Char	30+1	區號代表的名字
	char szKeepCode[CC_KEEP_CODE_LEN];			//保留字段	char	10		保留
};
/*************************************************************/
/*************************************************************/
/****			Create by Eagegao  in 2004-12-17          ****/
/****		this struct identified the infomation of a    ****/
/****       province.if the infomation of the province is ****/
/****       added,it the cell of the struct that is       ****/
/****       szKeepCode will be used as the added          ****/
/****       infomation.                                   ****/
/****       this struct won't be saved in the database    ****/
/*************************************************************/
/*************************************************************/
struct province_info_struct
{
	int nProvinceID;							//省ID		Int		4+1	
	char szProvinceName[CC_PROVINCE_NAME_LEN];	//省名稱	Char	30+1	全國的所有省的名稱
	char szKeepCode[CC_KEEP_CODE_LEN];			//保留字段	char	10		保留
};

/*************************************************************/
/*************************************************************/
/****			Create by Eagegao  in 2004-12-17          ****/
/****		this struct identified the infomation of a    ****/
/****       device.if the infomation of the device is     ****/
/****       added,it the cell of the struct that is       ****/
/****       szKeepCode will be used as the added          ****/
/****       infomation.                                   ****/
/****       this struct won't be saved in the database    ****/
/*************************************************************/
/*************************************************************/
struct device_info_struct
{
	int   nDeviceId;								//設備ID			int		4		設備的標識ID
	char  szDevieName[CC_DEVIE_NAME_LEN];			//設備名稱			char	20+1	
	char  szDevieSerialNum[CC_DEVICE_NUM_LEN];	    //設備編號			char	10+1	廠家的設備編號
	int   nRoomId;									//房間ID			int		4		設備所屬房間ID
	short nSystemAddr;								//系統地址			short	2		設備系統地址
	short nDeviceAddr;								//設備地址			short	2		節點的地址  0-表示虛設備
	short nDeviceType;								//設備類型			short	2		1-紅外設備  2-用戶設備  。。。其他待定義	
	short nDeviceStatus;							//設備當前狀態      short	2		設備當前狀態值,值范圍根據設備類型而異,請參閱<設備規范說明>
	char  cDeviceIsOnline;							//設備在線狀態      char	1		0-離線  1-在線	
	char  cDeviceIsEnable;							//設備停用/啟用狀態	char	1		0-啟用 1-停用	
	int   nBindDeviceId;							//實設備ID			int		4		綁定的實設備ID
	int   nObjOpearation;							//操作源			int		4		0:中控 1:遙控器 2:設備面板 3:電話 4:web遠控
	char  szKeepCode[CC_KEEP_CODE_LEN];				//保留字段			char	10		保留	
};
/*************************************************************/
/*************************************************************/
/****			Create by Eagegao  in 2004-12-17          ****/
/****		this struct identified the infomation of a    ****/
/****       sence.if the infomation of the sence is		  ****/
/****       added,it the cell of the struct that is       ****/
/****       szKeepCode will be used as the added          ****/
/****       infomation.                                   ****/
/****       this struct won't be saved in the database    ****/
/*************************************************************/
/*************************************************************/

struct sence_info_struct
{
	int  nSceneId;								//場景ID	int		4		場景的標識ID
	char szSceneName[CC_SCENE_NAME_LEN];		//場景名稱	char	20		用戶可自定義的名稱
	int  nRoomId;								//房間ID	int		4		場景所屬的房間ID 
	char cSceneProperty;						//場景屬性	char	1		0-關 1-開	
	char cSceneType;							//場景類型	char	1		0-起夜 1-睡眠 2-離家 3-歸家 4-會客 5-自定 6-家庭影院
	char szSceneDescrip[CC_SCENE_DESCRIP_LEN];	//描述		char	60+1	對場景的詳細描述
	char szKeepCode[CC_KEEP_CODE_LEN];		    //保留字段	char	10		保留		
};
/*************************************************************/
/*************************************************************/
/****			Create by Eagegao  in 2004-12-17          ****/
/****		this struct identified the infomation of a    ****/
/****       sence_device.if the infomation of the		  ****/
/****        sence_device is added,it the cell of         ****/
/****       the struct that is szKeepCode will be         ****/
/****       used as the added infomation.                 ****/
/****       this struct won't be saved in the database    ****/
/*************************************************************/
/*************************************************************/
struct sence_device_info_struct
{
	int   nSceneId;						//場景ID	int		4	場景的標識ID
	int   nDeviceId;					//設備ID	int		4	設備的標識ID
	char  cSysStatus;					//系統狀態	char	1	定義見設備表->設備系統狀態
	short nDevieValue;					//設備值	short	2	定義見設備表->設備狀態
	char  szKeepCode[CC_KEEP_CODE_LEN];	//保留字段	char	10	保留		
};
/*************************************************************/
/*************************************************************/
/****			Create by Eagegao  in 2004-12-17          ****/
/****		this struct identified the infomation of a    ****/
/****       timer.if the infomation of the timer is		  ****/
/****       added,it the cell of the struct that is       ****/
/****       szKeepCode will be used as the added          ****/
/****       infomation.                                   ****/
/****       this struct won't be saved in the database    ****/
/*************************************************************/
/*************************************************************/
struct timer_info_struct
{
	int   nTimerId;					//定時器ID		int		4	定時器的標識ID
	char  cTimerType;				//類型			char	1	1-一次性 2-每日 3-每周 4-每月 5-每年	
	int   nDate;					/*時間			int	4	根據類型決定
									類型―>時間定義
									1―>日期時間,time_t類型  
									2―>一天內的累計分鐘,范圍0-24×60-1
									3―>一周內的累計分鐘,范圍0-7×24×60-1,周日為0,
									4―>一月內的累計分鐘,范圍0-31×24×60-1
									5―>一年內的累計分鐘,范圍0-365×24×60-1*/
	char  cBusiType;				//業務類型		char	1	1-鬧鐘 2-日程 3-備忘錄
	int   nBusiId;					//業務ID		int		4	根據業務類型確定的業務ID
	char  szKeepCode[CC_KEEP_CODE_LEN];//保留字段		char	10	保留		
};

/*************************************************************/
/*************************************************************/
/****			Create by Eagegao  in 2004-12-17          ****/
/****		this struct identified the infomation of a    ****/
/****       clock.if the infomation of the clock is		  ****/
/****       added,it the cell of the struct that is       ****/
/****       szKeepCode will be used as the added          ****/
/****       infomation.                                   ****/
/****       this struct won't be saved in the database    ****/
/*************************************************************/
/*************************************************************/
struct clock_info_struct
{
	int  nId;								//鬧鐘ID	int		4		鬧鐘的標識ID
	char szTipContent[CC_TIP_CONTEN_LEN];	//提示內容	char	30+1	
	char szSetName[CC_SET_NAME_LEN];	    //設置人	char	20+1	用卡用戶名讓用戶選擇
	int  nRingId;							//鈴聲ID	int		4		見鈴聲表->鈴聲ID
	char szKeepCode[CC_KEEP_CODE_LEN];		//保留字段	char	10		保留
};

/*************************************************************/
/*************************************************************/
/****			Create by Eagegao  in 2004-12-17          ****/
/****		this struct identified the infomation of a    ****/
/****       ring.if the infomation of the ring is		  ****/
/****       added,it the cell of the struct that is       ****/
/****       szKeepCode will be used as the added          ****/
/****       infomation.                                   ****/
/****       this struct won't be saved in the database    ****/

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日本一道本| av午夜精品一区二区三区| 粉嫩av一区二区三区粉嫩| 国产亚洲制服色| 337p日本欧洲亚洲大胆精品| 91在线观看污| 亚洲精品视频在线观看网站| 精品国产伦一区二区三区观看方式| eeuss鲁片一区二区三区| 精品午夜一区二区三区在线观看| 一区二区三区四区精品在线视频 | 日韩国产高清在线| 亚洲国产成人在线| 欧美tickling挠脚心丨vk| 欧美伊人久久久久久久久影院| 国产成人免费在线观看不卡| 免费在线观看一区| 午夜精品久久一牛影视| 亚洲精品乱码久久久久久久久 | 欧美精品乱人伦久久久久久| 99久久久精品| 国产91精品一区二区麻豆网站| 免费成人在线网站| 日韩中文字幕1| 亚洲国产乱码最新视频| 亚洲人成7777| 国产精品超碰97尤物18| 欧美国产视频在线| 欧美国产激情二区三区| 久久综合国产精品| 久久网站热最新地址| 欧美电影免费观看高清完整版| 欧美高清精品3d| 欧美日韩日日骚| 欧美日韩精品福利| 欧美精品粉嫩高潮一区二区| 欧美日韩国产经典色站一区二区三区| 91麻豆精品一区二区三区| 97se亚洲国产综合自在线观| av电影一区二区| 91免费看`日韩一区二区| 96av麻豆蜜桃一区二区| 色婷婷一区二区三区四区| 在线亚洲+欧美+日本专区| 91久久久免费一区二区| 欧美在线制服丝袜| 欧美精品在线一区二区| 91麻豆精品国产自产在线观看一区 | 国产精品久久一级| 1024亚洲合集| 亚洲九九爱视频| 亚洲无人区一区| 日本va欧美va瓶| 麻豆精品视频在线观看视频| 国产在线麻豆精品观看| 国产成人99久久亚洲综合精品| 成人综合在线视频| 91网页版在线| 欧美日韩电影在线播放| 日韩欧美一区电影| 国产精品三级在线观看| 夜夜嗨av一区二区三区网页| 日韩和欧美一区二区三区| 九九在线精品视频| 国产不卡在线一区| 色综合中文字幕| 欧美日韩国产成人在线91| 欧美岛国在线观看| 国产精品高潮呻吟| 亚洲成人免费看| 国产一区二三区| 91色乱码一区二区三区| 91精品视频网| 中文字幕不卡在线观看| 亚洲一区二区三区爽爽爽爽爽 | 亚洲一二三区视频在线观看| 免费成人你懂的| youjizz久久| 8x福利精品第一导航| 国产人妖乱国产精品人妖| 一区二区在线观看av| 麻豆精品视频在线观看| eeuss国产一区二区三区| 欧美日韩国产大片| 国产精品久久久久久久久果冻传媒| 亚洲一区二区三区视频在线播放| 久久av老司机精品网站导航| 91亚洲精华国产精华精华液| 欧美日韩精品二区第二页| 国产精品无圣光一区二区| 一区二区三区精品| 国产精品亚洲人在线观看| 欧美日韩一级二级| 国产精品美女久久久久av爽李琼| 五月婷婷综合激情| 成人久久视频在线观看| 日韩一区二区视频| 亚洲欧美日韩成人高清在线一区| 黑人巨大精品欧美黑白配亚洲| 欧美在线看片a免费观看| 久久九九久精品国产免费直播| 亚洲国产精品久久久男人的天堂 | 欧美精品三级在线观看| 中文字幕欧美国产| 久久99日本精品| 欧美日韩美女一区二区| 国产精品久久久久久久裸模| 老司机精品视频一区二区三区| 91福利在线观看| 国产精品国产三级国产普通话三级| 免费看欧美女人艹b| 在线精品视频免费观看| 欧美极品xxx| 国模一区二区三区白浆| 在线播放中文一区| 亚洲一区二区精品久久av| 99久久精品免费看| 亚洲国产成人午夜在线一区| 精东粉嫩av免费一区二区三区| 欧美肥妇bbw| 亚洲国产乱码最新视频| 在线观看日韩国产| 亚洲同性gay激情无套| 国产成人一区在线| 久久精品视频网| 精品中文字幕一区二区小辣椒| 欧美精品久久久久久久久老牛影院| 亚洲激情一二三区| 在线观看www91| 一区二区三区精品视频| 在线免费视频一区二区| 亚洲一区二区在线免费观看视频| 日本丶国产丶欧美色综合| 一区在线观看视频| 99这里只有精品| 中文字幕中文字幕一区| av综合在线播放| 亚洲天堂av老司机| 色综合网色综合| 亚洲精品国产无天堂网2021| 色94色欧美sute亚洲线路二| 一区二区成人在线| 欧美午夜理伦三级在线观看| 亚洲永久免费av| 欧美三级三级三级爽爽爽| 天天综合网 天天综合色| 日韩天堂在线观看| 国产一区999| 中文字幕国产一区| 91丨九色丨尤物| 亚洲国产色一区| 日韩无一区二区| 成人综合婷婷国产精品久久| 国产精品不卡在线| 欧美日韩一区在线| 久久精品国产第一区二区三区| 日韩免费看的电影| 国产精品18久久久久久久久| 综合自拍亚洲综合图不卡区| 在线欧美日韩国产| 亚洲www啪成人一区二区麻豆| 欧美一卡二卡三卡四卡| 国产主播一区二区三区| 亚洲丝袜美腿综合| 在线观看91精品国产入口| 日韩制服丝袜先锋影音| 久久久久久久久久电影| 99riav一区二区三区| 亚洲成av人影院| 欧美精品一区二区三区四区| 成人性生交大片免费看视频在线| 一二三四区精品视频| 日韩精品一区二区三区在线播放 | 日本久久一区二区三区| 日韩成人一级片| 国产欧美精品一区aⅴ影院| 97成人超碰视| 久久国产精品一区二区| 国产精品国产自产拍高清av王其| 欧美人与禽zozo性伦| 国产ts人妖一区二区| 亚洲电影一区二区三区| 久久久久久99精品| 欧美喷水一区二区| 成人综合婷婷国产精品久久| 性感美女极品91精品| 国产网站一区二区| 91精品欧美福利在线观看| 国产一区二区免费看| 亚洲午夜国产一区99re久久| 久久蜜桃香蕉精品一区二区三区| 91免费国产在线| 久久99精品国产麻豆不卡| 亚洲女爱视频在线| 久久精品一区二区| 6080亚洲精品一区二区| 成人教育av在线| 精品一区二区三区在线观看国产| 亚洲一区在线观看视频| 国产欧美一区二区三区网站|