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

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

?? tuxedo.cpp

?? 本源碼為移動公司話費查詢中間件TUXEDO使用的實例
?? CPP
?? 第 1 頁 / 共 5 頁
字號:
	}

	
	//if(startindex==0)
	if(!m_bFlag1)
	{
		m_pShppRequest->ResetField();
		m_pShppRequest->ResetField();
		m_pShppRequest->AddPrintField(13);    //主叫號
		m_pShppRequest->AddPrintField(12);    //叫呼轉號碼
		m_pShppRequest->AddPrintField(13);//4日期  時間20020321  03-21
		m_pShppRequest->AddPrintField(5,2);   //5時長(秒)
		m_pShppRequest->AddPrintField(6,2);   //6話費
		m_pShppRequest->PrintLine("語音話單-呼轉語音話單",LPLCENTER);
//		m_pShppRequest->PutParameter("對方號碼    方式  日期 時間     時長 話費 通話地");
		m_pShppRequest->PutParameter("主叫號碼     呼轉號碼        日期     時長 話費 ");
		m_pShppRequest->PutParameter(s_chSeparator);
		
		startindex  = 1;
		m_bFlag1=TRUE;
		m_fFeeCount =0.0;//費用
		m_nCountLine=0;;//行數
		
		input1.count = 11;
		for(int i=0;i<15;i++)
			for(int j=0;j<3;j++)
			{
				input1.num[i][j]='\0';
				input2.num[i][j]='\0';
			}
			strcpy(input1.num[0],"15");strcpy(input1.num[1],"15");strcpy(input1.num[2],"15");
			strcpy(input1.num[3],"20");strcpy(input1.num[4],"5");strcpy(input1.num[5],"6");
			strcpy(input1.num[6],"4");strcpy(input1.num[7],"11");strcpy(input1.num[8],"10");
			strcpy(input1.num[9],"10");strcpy(input1.num[10],"6");
			
			input2.count = 7;//1參數 第1,2是否可能超長  2參數  那個是時間  3參數 費用在那幾個字段內 
			strcpy(input2.num[0],"1");strcpy(input2.num[1],"3");strcpy(input2.num[2],"4");
			strcpy(input2.num[3],"6");strcpy(input2.num[4],"9");strcpy(input2.num[5],"10");			
			strcpy(input2.num[6],"11");strcpy(input2.num[7],"4");
			
	}
	
	if((str=strstr(rebuf,"合計"))!=NULL)
	{
		endindex=1;
	}
	else
	{	
		//rebuf=rebuf+114;//將前面的橫線去掉
		int countindex=0;
		number = strlen(rebuf);
		while(number>2)
		{
			//	str=rebuf;
			countindex=0;
			//if((countindex=putongaddline(rebuf,input1,input2))>0)
			try
			{
				countindex=daishouaddline(rebuf,12,4);	
			}
			catch(...)
			{
				printf("呼轉語音分解函數%s %d\n",phone,__LINE__);
				return -1;
			}
			if(countindex>0)
			{//加記錄到內存
				try
					{				
					tempfee=0.0;
					tempfee=atof(Param[8]);//費用
					tempfee=tempfee+atof(Param[9]);//費用
					tempfee=tempfee+atof(Param[10]);//費用
					m_fFeeCount=m_fFeeCount+tempfee;

					char tempbuf1[6];
					memset(tempbuf1,'\0',6);
					sprintf(tempbuf1,"%.2f",tempfee);
					
					//for(int j=0;j<input2.count-4;j++)
					//	m_pShppRequest->AddFieldVal(Param[atoi(input2.num[j])-1],strlen(rtrim(Param[atoi(input2.num[j])-1])));
					m_pShppRequest->AddFieldVal(Param[0],strlen(Param[0]));
					m_pShppRequest->AddFieldVal(Param[2],strlen(Param[2]));
					m_pShppRequest->AddFieldVal(Param[3],strlen(Param[3]));
					m_pShppRequest->AddFieldVal(Param[5],strlen(Param[5]));
					m_pShppRequest->AddFieldVal(tempbuf1,strlen(tempbuf1));
				}
				catch(...)
				{
					printf("呼轉語音分解函數%s %d\n",phone,__LINE__);
					return -1;					
				}
				m_nCountLine=m_nCountLine+1;
				number=number-countindex;
				rebuf=rebuf+countindex;
				while(rebuf[0]==' ')
				{
					rebuf=rebuf+1;
					number=number-1;
				}
			}//添加記錄結束		
			else
			{
				m_pShppRequest->Reset();
				return -1;
			}
		}
		
	}
	
	if((endindex==1)&&(m_nCountLine!=0))
	{
		//處理結尾
		char pList[256];
		m_pShppRequest->PutParameter(s_chSeparator);		
		sprintf(pList,"呼轉語音話單 總費用:%0.2f元;",m_fFeeCount);
		m_tempfee=m_tempfee+m_fFeeCount;
		m_pShppRequest->PutParameter(pList);
		sprintf(pList,"呼轉語音話單 總次數:%d次;", m_nCountLine);
		m_tempcount=m_tempcount+m_nCountLine;
		m_pShppRequest->PutParameter(pList);
		m_pShppRequest->PutParameter(s_chSeparator);

	//	*m_pfOutFeeCount += m_fFeeCount;
	//	*m_pnLineCount += m_nCountLine;
		//m_pShppRequest->Flush();
		
		m_fFeeCount  = 0.0;
		m_nCountLine = 0;
		startindex   = 0;
		endindex     = 0;
	}
	
	return 0;
}
//==========================================
int CTuxedo::vpmn(char *rebuf,char *phone)
{
	char *str=NULL;
	int number = 100;
//	char linebuf[256];
	if((strstr(rebuf,"合計")!=NULL)&&(startindex==0)&&(strstr(rebuf,"-------")==NULL))
		return 0;
	if((strstr(rebuf,"--------")!=NULL)&&(strlen(rebuf)<150))
		return 0;	
	if((strstr(rebuf,"合計")!=NULL)&&(startindex==0))
		return 0;
	if(strlen(rebuf)<10)
		return 0;
	if(strstr(rebuf,"VPMN基本話費")!=NULL)
		return 0;

	if(startindex==0)
	{
		m_pShppRequest->ResetField();
		m_pShppRequest->AddPrintField(13);    //1對方號碼
		m_pShppRequest->AddPrintField(4);     //2方式
		m_pShppRequest->AddPrintField(13);    //3日期  時間20020321  03-21
		m_pShppRequest->AddPrintField(6,2);   //4時長(秒)
		m_pShppRequest->AddPrintField(6,2);   //5話費
		m_pShppRequest->AddPrintField(7,2);   //6本方所在地		
		m_pShppRequest->PrintLine("VPMN語音話單",LPLCENTER);
		m_pShppRequest->PutParameter("對方號碼    方式  日期 時間     時長 話費 通話地");
		m_pShppRequest->PutParameter(s_chSeparator);
		
		startindex  = 1;
		m_fFeeCount =0.0;//費用
		m_nCountLine=0;;//行數
		
		input1.count = 13;
		for(int i=0;i<15;i++)
			for(int j=0;j<3;j++)
			{
				input1.num[i][j]='\0';
			    input2.num[i][j]='\0';
			}
		strcpy(input1.num[0],"15");strcpy(input1.num[1],"15");strcpy(input1.num[2],"20");
		strcpy(input1.num[3],"5");strcpy(input1.num[4],"5");strcpy(input1.num[5],"7");
		strcpy(input1.num[6],"7");strcpy(input1.num[7],"7");strcpy(input1.num[8],"5");
		strcpy(input1.num[9],"9");strcpy(input1.num[10],"7");strcpy(input1.num[11],"7");
		strcpy(input1.num[12],"6");

		input2.count = 6;//count 里面存放的幾個是時間
			strcpy(input2.num[0],"1");strcpy(input2.num[1],"2");strcpy(input2.num[2],"3");
			strcpy(input2.num[3],"5");strcpy(input2.num[4],"14");strcpy(input2.num[5],"10");			
			strcpy(input2.num[6],"3");		
			
	}
	
	if((str=strstr(rebuf,"合計"))!=NULL)
	{
		endindex=1;
//		number=number-(str-rebuf);	
	}
	else
	{	
//		rebuf=rebuf+114;//將前面的橫線去掉
		int countindex=0;
		number = strlen(rebuf);
		while(number>2)
		{
			try
			{
				countindex=daishouaddline(rebuf,14,3);	
			}
			catch(...)
			{
				printf("vpmn分解函數%s %d\n",phone,__LINE__);
				return -1;
			}
			if(countindex>0)
			{//加記錄到內存
				m_fFeeCount=m_fFeeCount+atof(Param[13]);//費用
				
				try
				{
					if(strncmp(Param[0],phone,strlen(phone))==0)
					{
						m_pShppRequest->AddFieldVal(Param[1],strlen(rtrim(Param[1])));
						m_pShppRequest->AddFieldVal("主",2);
					}
					else
					{
						m_pShppRequest->AddFieldVal(Param[0],strlen(rtrim(Param[0])));
						m_pShppRequest->AddFieldVal("被",2);					
					}	
					/*for(int j=2;j<input2.count;j++)
					{
						if(strlen(rtrim(Param[atoi(input2.num[j])-1]))!=0)
							m_pShppRequest->AddFieldVal(Param[atoi(input2.num[j])-1],strlen(rtrim(Param[atoi(input2.num[j])-1])));
						else
							m_pShppRequest->AddFieldVal("無",2);
					}*/
					m_pShppRequest->AddFieldVal(Param[2],strlen(Param[2]));
					m_pShppRequest->AddFieldVal(Param[4],strlen(Param[4]));
					m_pShppRequest->AddFieldVal(Param[13],strlen(Param[13]));
					m_pShppRequest->AddFieldVal(Param[9],strlen(Param[9]));
				}
				catch(...)
				{
					printf("vpmn分解函數%s %d\n",phone,__LINE__);
					return -1;					
				}
				m_nCountLine=m_nCountLine+1;
				number=number-countindex;
				rebuf=rebuf+countindex;
				while(rebuf[0]==' ')
				{
					rebuf=rebuf+1;
					number=number-1;
				}				
			}//添加記錄結束		
			else
			{
				m_pShppRequest->Reset();
				return -1;
			}			
		}
	}
	if((endindex==1)&&(m_nCountLine!=0))
	{
		//處理結尾
		char pList[256];
		m_pShppRequest->PutParameter(s_chSeparator);		
		sprintf(pList,"VPMN語音話單 總費用:%0.2f元;",m_fFeeCount);
		m_tempfee=m_tempfee+m_fFeeCount;
		m_pShppRequest->PutParameter(pList);
		sprintf(pList,"VPMN語音話單 總次數:%d次;", m_nCountLine);
		m_tempcount=m_tempcount+m_nCountLine;
		m_pShppRequest->PutParameter(pList);
		m_pShppRequest->PutParameter(s_chSeparator);

	//	*m_pfOutFeeCount += m_fFeeCount;
	//	*m_pnLineCount += m_nCountLine;
		//m_pShppRequest->Flush();
		
		m_fFeeCount  = 0.0;
		m_nCountLine = 0;
		startindex   = 0;
		endindex     = 0;
	}

	return 0;
}
//==========================================
int CTuxedo::yuyinzazhi(char *rebuf,char *phone)
{
	char *str=NULL;
	int number = 100;
//	char linebuf[256];
	if((strstr(rebuf,"合計")!=NULL)&&(startindex==0)&&(strstr(rebuf,"-------")==NULL))
		return 0;
	if((strstr(rebuf,"--------")!=NULL)&&(strlen(rebuf)<150))
		return 0;	
	if((strstr(rebuf,"合計")!=NULL)&&(startindex==0))
		return 0;
	if(strlen(rebuf)<10)
		return 0;
	if(startindex==0)
	{
		m_pShppRequest->ResetField();
		m_pShppRequest->AddPrintField(11);    //1對方號碼
		m_pShppRequest->AddPrintField(14);     //2方式
		m_pShppRequest->AddPrintField(7);    //3日期  時間20020321  03-21
		m_pShppRequest->AddPrintField(11);   //4時長(秒)
		m_pShppRequest->AddPrintField(6,2);   //5話費
		m_pShppRequest->PrintLine("語音話單-語音雜志話單",LPLCENTER);
		//m_pShppRequest->PutParameter("對方號碼    方式  日期 時間     時長 話費 通話地");
		m_pShppRequest->PutParameter("被叫號碼      時間      時長    計費類型  信息費");
		m_pShppRequest->PutParameter(s_chSeparator);
		
		startindex  = 1;
		m_fFeeCount =0.0;//費用
		m_nCountLine=0;;//行數
		
		input1.count = 6;
		for(int i=0;i<15;i++)
			for(int j=0;j<3;j++)
			{
				input1.num[i][j]='\0';
			    input2.num[i][j]='\0';
			}
		strcpy(input1.num[0],"15");strcpy(input1.num[1],"15");strcpy(input1.num[2],"22");
		strcpy(input1.num[3],"11");strcpy(input1.num[4],"11");strcpy(input1.num[5],"11");

		input2.count = 5;//count 里面存放的幾個是時間
			strcpy(input2.num[0],"2");strcpy(input2.num[1],"3");strcpy(input2.num[2],"5");
			strcpy(input2.num[3],"6");strcpy(input2.num[4],"7");strcpy(input2.num[5],"3");			
			
	}
	
	if((str=strstr(rebuf,"合計"))!=NULL)
	{
		endindex=1;
	}
	else
	{	
//		rebuf=rebuf+114;//將前面的橫線去掉
		int countindex=0;
		number = strlen(rebuf);
		while(number>2)
		{
			//	str=rebuf;
			countindex=0;
			if((countindex=daishouaddline(rebuf,7,3))>0)
			{//加記錄到內存
				m_fFeeCount=m_fFeeCount+atof(Param[6]);//費用
			
	//			for(int j=0;j<input2.count;j++)
	//				m_pShppRequest->AddFieldVal(Param[atoi(input2.num[j])-1],strlen(rtrim(Param[atoi(input2.num[j])-1])));
	            m_pShppRequest->AddFieldVal(Param[1],strlen(Param[1]));
				m_pShppRequest->AddFieldVal(Param[2],strlen(Param[2]));
				m_pShppRequest->AddFieldVal(Param[4],strlen(Param[4]));
				m_pShppRequest->AddFieldVal(Param[5],strlen(Param[5]));
				m_pShppRequest->AddFieldVal(Param[6],strlen(Param[6]));
				
				m_nCountLine=m_nCountLine+1;
				number=number-countindex;
				rebuf=rebuf+countindex;
				while(rebuf[0]==' ')
				{
					rebuf=rebuf+1;
					number=number-1;
				}
			}//添加記錄結束		
			else
			{
				m_pShppRequest->Reset();
				return -1;
			}
			
		}
	}
	
	if((endindex==1)&&(m_nCountLine!=0))
	{
		//處理結尾
		char pList[256];
		m_pShppRequest->PutParameter(s_chSeparator);		
		sprintf(pList,"語音雜志話單 總費用:%0.2f元;",m_fFeeCount);
		m_tempfee=m_tempfee+m_fFeeCount;
		m_pShppRequest->PutParameter(pList);
		sprintf(pList,"語音雜志話單 總次數:%d次;", m_nCountLine);
		m_tempcount=m_tempcount+m_nCountLine;
		m_pShppRequest->PutParameter(pList);
		m_pShppRequest->PutParameter(s_chSeparator);

	//	*m_pfOutFeeCount += m_fFeeCount;
	//	*m_pnLineCount += m_nCountLine;
		//m_pShppRequest->Flush();
		
		m_fFeeCount  = 0.0;
		m_nCountLine = 0;
		startindex   = 0;
		endindex     = 0;
	}

	return 0;
}
//==========================================
int CTuxedo::putongduanxin(char *rebuf,char *phone)
{
	char *str=NULL;
	int number = 100;
//	char linebuf[256];
	float tempfee = 0.0;
	if((strstr(rebuf,"--------")!=NULL)&&(strlen(rebuf)<150))
		return 0;	
	if((strstr(rebuf,"合計")!=NULL)&&(startindex==0))
		return 0;
	if(strlen(rebuf)<10)
		return 0;
	if(strstr(rebuf,"合計")!=NULL)
	{
		endindex=1;
		if((endindex==1)&&(m_nCountLine!=0))
		{
			//處理結尾
			char pList[256];
			m_pShppRequest->PutParameter(s_chSeparator);		
			sprintf(pList,"普通短信話單 總費用:%0.2f元;",m_fFeeCount);
			m_tempfee=m_tempfee+m_fFeeCount;
			m_pShppRequest->PutParameter(pList);
			sprintf(pList,"普通短信話單 總次數:%d次;", m_nCountLine);
			m_tempcount=m_tempcount+m_nCountLine;
			m_pShppRequest->PutParameter(pList);
			m_pShppRequest->PutParameter(s_chSeparator);
			
			//	*m_pfOutFeeCount += m_fFeeCount;
			//	*m_pnLineCount += m_nCountLine;
			//m_pShppRequest->Flush();
			
			m_fFeeCount  = 0.0;
			m_nCountLine = 0;
			startindex   = 0;
			endindex     = 0;
		}
		return 0;
	}

	if(startindex==0)
	{
		m_pShppRequest->ResetField();
		m_pShppRequest->ResetField();
		m_pShppRequest->AddPrintField(15);    //主叫號
		m_pShppRequest->AddPrintField(5);    //叫呼轉號碼
		m_pShppRequest->AddPrintField(15);//4日期  時間20020321  03-21
		m_pShppRequest->AddPrintField(7);   //5時長(秒)
		m_pShppRequest->AddPrintField(8);   //6話費
		m_pShppRequest->PrintLine("短信話單-普通短信話單",LPLCENTER);
//		m_pShppRequest->PutParameter("對方號碼    方式  日期 時間     時長 話費 通話地");
		m_pShppRequest->PutParameter("對方號碼       方式      日期       費用   狀態");
		m_pShppRequest->PutParameter(s_chSeparator);
		
		startindex  = 1;
		m_fFeeCount =0.0;//費用
		m_nCountLine=0;;//行數
		
		input1.count = 8;
		for(int i=0;i<15;i++)
			for(int j=0;j<3;j++)
			{
				input1.num[i][j]='\0';
				input2.num[i][j]='\0';
			}
			strcpy(input1.num[0],"24");strcpy(input1.num[1],"24");strcpy(input1.num[2],"22");

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美刺激脚交jootjob| 久久色.com| 国产一区二区久久| 一区二区免费看| 国产欧美日韩三区| 欧美一级在线免费| 欧美三区在线观看| 色网综合在线观看| 色婷婷综合久久| 精品播放一区二区| 久久久美女毛片| 国产精品网站在线| 国产精品视频观看| 精品一区二区在线播放| 精品综合免费视频观看| 欧美性三三影院| 欧美一级日韩不卡播放免费| 亚洲黄色免费网站| 日韩电影网1区2区| 精品一区二区三区视频在线观看 | 日韩激情一二三区| 日本不卡一区二区| 日韩精品视频网站| 欧美在线观看一区二区| 日韩亚洲电影在线| 国产亚洲综合色| 亚洲欧洲国产日韩| 亚洲国产毛片aaaaa无费看| 一区二区三区在线视频播放| 国产91丝袜在线观看| 六月丁香综合在线视频| 九一久久久久久| 97精品久久久久中文字幕| 蜜臀久久久久久久| 久久成人久久爱| 欧美视频完全免费看| 亚洲欧美激情小说另类| 国产精品久久久久久久久图文区| 亚洲人一二三区| 国产精品你懂的| 国产成人免费在线观看不卡| 99久久久久久| 亚洲欧洲国产专区| jlzzjlzz国产精品久久| 99re热这里只有精品免费视频| 久久久久久久综合狠狠综合| 老色鬼精品视频在线观看播放| 成人aa视频在线观看| 欧美日韩一二三区| 亚洲电影欧美电影有声小说| 在线观看视频91| 一区二区三区在线观看网站| 色婷婷av一区二区| 一区二区三区在线视频免费观看| 91久久精品一区二区三区| 色综合咪咪久久| 一区二区三区欧美日| 欧洲亚洲精品在线| 成人妖精视频yjsp地址| 成人午夜视频免费看| 国产精品拍天天在线| 在线亚洲一区二区| 首页综合国产亚洲丝袜| 欧美一区二区三区成人| 狠狠狠色丁香婷婷综合激情| 在线这里只有精品| 日韩在线一区二区三区| 日韩一区二区免费视频| 成人午夜电影网站| 亚洲日本va午夜在线电影| 欧美日韩精品免费| 狠狠色狠狠色综合| 精品久久久久久久久久久久久久久| 国产高清不卡一区二区| 亚洲美女区一区| 欧美日韩1234| 国产精品亚洲综合一区在线观看| 国产精品国产三级国产aⅴ中文| 99久久久国产精品免费蜜臀| 亚洲gay无套男同| 欧美精品一区二区三区在线| 91福利精品视频| 久久国产成人午夜av影院| 欧美国产日本视频| 欧美亚洲日本国产| 91片黄在线观看| 中文字幕国产精品一区二区| 色婷婷综合久久久中文一区二区 | 久久综合久久鬼色中文字| 成人精品亚洲人成在线| 午夜激情综合网| 国产精品久久网站| 777色狠狠一区二区三区| 国产伦精品一区二区三区视频青涩 | 成人在线一区二区三区| 首页亚洲欧美制服丝腿| 国产精品亲子乱子伦xxxx裸| 日韩三级视频在线看| 91免费小视频| 国产一区视频在线看| 一区二区三区美女| 国产欧美一区二区精品性色超碰| 欧美日韩中文字幕一区| 国产+成+人+亚洲欧洲自线| 日精品一区二区| 亚洲三级免费观看| 精品福利av导航| 欧美日本精品一区二区三区| 成人国产精品免费网站| 国产裸体歌舞团一区二区| 蜜桃久久久久久| 亚洲va欧美va人人爽| 亚洲欧洲日韩av| 精品国产乱码久久久久久牛牛| 欧美一级在线免费| 欧美网站大全在线观看| av欧美精品.com| 成人综合在线观看| 国产一区二区毛片| 精品一区二区日韩| 视频在线观看一区二区三区| 性做久久久久久免费观看| 亚洲人成人一区二区在线观看| 国产精品少妇自拍| 久久久久久久久久久久久夜| 精品美女在线观看| 欧美精品在线观看播放| 欧美日韩国产高清一区| 欧美日韩亚洲综合一区二区三区| av在线一区二区| 成人黄色一级视频| 成人黄色综合网站| 97久久精品人人做人人爽50路| 国产成人免费在线视频| 成人黄色综合网站| 不卡一区二区三区四区| 91啪九色porn原创视频在线观看| 色婷婷久久久久swag精品| 91啪亚洲精品| 欧美日韩不卡一区二区| 91麻豆精品国产自产在线| 91精品国产麻豆国产自产在线| 7777精品伊人久久久大香线蕉| 欧美日韩国产精选| 在线观看av不卡| 久久精品网站免费观看| 中文字幕亚洲精品在线观看| yourporn久久国产精品| 欧美xxx久久| 精品视频免费看| 欧美日韩国产成人在线91| 成人精品在线视频观看| 在线免费观看视频一区| 成人激情午夜影院| 欧美一区二区三区精品| 国产免费成人在线视频| 午夜欧美视频在线观看| 久久99国产精品久久99 | 欧美伦理电影网| 日韩三级在线免费观看| 国产精品黄色在线观看| 午夜视频在线观看一区| 精品在线播放免费| www..com久久爱| 91精品在线麻豆| 国产精品三级久久久久三级| 免费三级欧美电影| 成人禁用看黄a在线| 欧美精品一区二区三| 国产精品免费免费| 国内外精品视频| 色综合久久久网| 国产色综合久久| 五月天婷婷综合| 在线观看日韩av先锋影音电影院| 欧美一二三区精品| 亚洲二区在线视频| 国产成人综合网站| 精品国产青草久久久久福利| 亚洲免费观看高清| 成人h动漫精品| 日韩免费观看高清完整版| 亚洲成a人片在线观看中文| 风间由美中文字幕在线看视频国产欧美| 欧美嫩在线观看| 亚洲欧美二区三区| 成人一区二区三区视频在线观看| 欧美久久一二区| 亚洲欧洲精品成人久久奇米网| 久久福利资源站| 91免费国产视频网站| 国产片一区二区| 亚洲国产欧美日韩另类综合| 色欲综合视频天天天| 欧美激情一区不卡| 国产精品一卡二卡在线观看| 日韩三级电影网址| 另类小说综合欧美亚洲| 欧美精品视频www在线观看| 亚洲午夜激情av|