|
@@ -71,11 +71,11 @@ namespace DataSharing.CityStateDataExchange
|
|
|
{
|
|
|
{ "Code", secretKey },
|
|
|
{ "FSHCode", dto.No },
|
|
|
- { "ServerName", HttpUtility.UrlEncode(serverName)},
|
|
|
- { "PurTypeName",HttpUtility.UrlEncode(dto.AcceptType) },
|
|
|
- { "ConTypeName",HttpUtility.UrlEncode( dto.HotspotSpliceName)},
|
|
|
- { "Title", HttpUtility.UrlEncode(dto.Title)},
|
|
|
- { "LinkName", HttpUtility.UrlEncode(dto.FromName)},
|
|
|
+ { "ServerName", serverName},
|
|
|
+ { "PurTypeName", dto.AcceptType },
|
|
|
+ { "ConTypeName", dto.HotspotSpliceName},
|
|
|
+ { "Title", dto.Title},
|
|
|
+ { "LinkName", dto.FromName},
|
|
|
{ "Gender",dto.FromGender switch
|
|
|
{
|
|
|
EGender.Female => "2",
|
|
@@ -85,8 +85,8 @@ namespace DataSharing.CityStateDataExchange
|
|
|
},
|
|
|
{ "Mobile", dto.Contact},
|
|
|
{ "Mail","" },
|
|
|
- { "Address", HttpUtility.UrlEncode( dto.FullAddress )},
|
|
|
- { "Content", HttpUtility.UrlEncode(dto.Content)},
|
|
|
+ { "Address", dto.FullAddress },
|
|
|
+ { "Content", dto.Content},
|
|
|
{ "Source",sendSource }
|
|
|
};
|
|
|
|
|
@@ -130,7 +130,7 @@ namespace DataSharing.CityStateDataExchange
|
|
|
{
|
|
|
{ "Code", secretKey }, //请求Code
|
|
|
{ "SCDRCode", dto.ExternalId }, //工单编号
|
|
|
- { "UndertakAdvice", HttpUtility.UrlEncode(dto.ActualOpinion.Trim()) }, //承办意见
|
|
|
+ { "UndertakAdvice", dto.ActualOpinion.Trim()}, //承办意见
|
|
|
{ "Source", sendSource } //来源
|
|
|
};
|
|
|
|