|
@@ -49,10 +49,9 @@ public class TiqnQueService : IGuiderSystemService, IScopeDependency
|
|
|
#endif
|
|
|
var acceptInfo = order.Adapt<AcceptInfo>();
|
|
|
acceptInfo.ReplyCode = order.No!; // 唯一标识
|
|
|
- acceptInfo.OrgId = order.ActualHandleOrgAreaCode.NotNullOrEmpty() ? long.Parse(order.ActualHandleOrgAreaCode) : 0; // 区域Id
|
|
|
- // acceptInfo.DepartmentNo = order.ActualHandleOrgCode!; // 部门编码
|
|
|
acceptInfo.TypeName = order.AcceptType!; // 诉求类型名称
|
|
|
acceptInfo.OccurDate = order.CreationTime; // 事发时间
|
|
|
+ //acceptInfo.OccurDate = DateTime.Now; // 事发时间
|
|
|
acceptInfo.DetailAddress = order.FullAddress!; // 详细地址
|
|
|
acceptInfo.Topic = order.Title!; // 线索主题
|
|
|
acceptInfo.DetailContent = order.Content!; // 详细内容
|
|
@@ -68,11 +67,11 @@ public class TiqnQueService : IGuiderSystemService, IScopeDependency
|
|
|
{
|
|
|
new() {
|
|
|
// ReflectCardId = // 反映人身份证号
|
|
|
- ReflectPhone = order.Contact!,
|
|
|
- ReflectUserName = order.FromName!,
|
|
|
+ ReflectPhone = order.Contact!, // 电话
|
|
|
+ ReflectUserName = order.FromName!, // 姓名
|
|
|
}
|
|
|
};
|
|
|
- var result = await httpClient.PostAsync<ApiReponse<string>>(new Uri(_url), acceptInfo);
|
|
|
+ var result = await httpClient.PostAsync<ApiReponse<AcceptInfoSuccessDto>>(new Uri(_url), acceptInfo);
|
|
|
return result.ToJson();
|
|
|
}
|
|
|
}
|