Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
huatu_API
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liudong1993
huatu_API
Commits
f3a45dc0
Commit
f3a45dc0
authored
Mar 09, 2026
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
11
parent
23cc9f19
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
11 deletions
+8
-11
SellOrderModule.cs
REBORN.Module.SellModule/SellOrderModule.cs
+3
-2
RB_Spider_PoiRepository.cs
REBORN.Repository/Video/RB_Spider_PoiRepository.cs
+5
-9
No files found.
REBORN.Module.SellModule/SellOrderModule.cs
View file @
f3a45dc0
...
...
@@ -18871,7 +18871,8 @@ namespace REBORN.Module.SellModule
//其它合同
var otherContractList = travel_ContractRepository.GetTravelContractListNewRepository(new RB_Travel_Contract_Extend() { QOrderIds = OrderStr, Status = -1 });
var otherContractList = new List<RB_Travel_Contract_Extend>();
otherContractList= travel_ContractRepository.GetTravelContractListNewRepository(new RB_Travel_Contract_Extend() { QOrderIds = OrderStr, Status = -1 });
#region 同行联系人LD
var customerChildList = new List<Rb_Customer_InfoChildren>();
REBORN.Repository/Video/RB_Spider_PoiRepository.cs
View file @
f3a45dc0
...
...
@@ -23,9 +23,11 @@ namespace REBORN.Repository.Video
DynamicParameters
parameters
=
new
DynamicParameters
();
builder
.
AppendFormat
(
@"
SELECT PoiName,CoverPic,CityName,CountryName,Description,Address,Latitude,Longitude
,MATCH(PoiName,PoiEnName) AGAINST(@keyword IN BOOLEAN MODE) score
FROM rb_spider_poi
WHERE 1=1
WHERE 1=1
AND MATCH(PoiName,PoiEnName) AGAINST(@keyword IN BOOLEAN MODE)
"
);
parameters
.
Add
(
"@keyword"
,
query
.
KeyWords
.
Trim
());
if
(
query
!=
null
)
{
if
(
query
.
SourceType
>
0
)
...
...
@@ -38,12 +40,6 @@ WHERE 1=1
builder
.
AppendFormat
(
" AND CountryName=@CountryName "
);
parameters
.
Add
(
"@CountryName"
,
query
.
CountryName
);
}
if
(!
string
.
IsNullOrEmpty
(
query
.
KeyWords
))
{
builder
.
AppendFormat
(
" AND PoiName LIKE @PoiName "
);
parameters
.
Add
(
"@PoiName"
,
"%"
+
query
.
KeyWords
+
"%"
);
}
if
(
query
.
CountryIdList
!=
null
&&
query
.
CountryIdList
.
Count
>
0
)
{
var
countryList
=
query
.
CountryIdList
...
...
@@ -56,7 +52,7 @@ WHERE 1=1
}
}
}
builder
.
AppendFormat
(
"
LIMIT 10
0; "
);
builder
.
AppendFormat
(
"
ORDER BY score DESC LIMIT 5
0; "
);
return
Get
<
RB_Spider_Poi_Extend
>(
builder
.
ToString
(),
parameters
).
ToList
();
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment