|
@@ -5,6 +5,7 @@ using Dapper;
|
|
|
using Datory;
|
|
|
using GxPress.Common.Tools;
|
|
|
using GxPress.EnumConst;
|
|
|
+using GxPress.Request.Reply;
|
|
|
using GxPress.Result.Reply;
|
|
|
|
|
|
namespace GxPress.Service.Implement.Reply
|
|
@@ -18,8 +19,11 @@ namespace GxPress.Service.Implement.Reply
|
|
|
/// 获取我收到的评论
|
|
|
/// </summary>
|
|
|
/// <returns></returns>
|
|
|
- public async Task<IEnumerable<ReplyResult>> GetReceiptCommentResult(int userId)
|
|
|
+ public async Task<IEnumerable<ReplyResult>> GetReceiptCommentResult(ReplyRequest request)
|
|
|
{
|
|
|
+ string sqlStr = string.Empty;
|
|
|
+ if (!string.IsNullOrEmpty(request.KeyWord))
|
|
|
+ sqlStr += $" and (a.Content like '%{request.KeyWord}%' or b.Name like '%request.KeyWord%')";
|
|
|
//获取回复我的
|
|
|
string sql = $@"SELECT
|
|
|
a.Id,
|
|
@@ -46,7 +50,7 @@ namespace GxPress.Service.Implement.Reply
|
|
|
tede_comment
|
|
|
WHERE
|
|
|
pid > 0)
|
|
|
- AND userId = {userId})";
|
|
|
+ AND userId = {request.UserId}) {sqlStr}";
|
|
|
var database = new Database(DatabaseType.MySql, ConfigHelper.GetValue("Database:ConnectionString"));
|
|
|
var connection = database.GetConnection();
|
|
|
var receipt = await connection.QueryAsync<ReplyResult>(sql);
|
|
@@ -70,7 +74,7 @@ namespace GxPress.Service.Implement.Reply
|
|
|
tede_comment
|
|
|
WHERE
|
|
|
pid > 0)
|
|
|
- AND userId = {userId}";
|
|
|
+ AND userId = {request.UserId}";
|
|
|
var my = await connection.QueryAsync<ReplyResult>(sql);
|
|
|
foreach (var item in receipt)
|
|
|
{
|
|
@@ -94,8 +98,11 @@ namespace GxPress.Service.Implement.Reply
|
|
|
/// 获取我回复的评论
|
|
|
/// </summary>
|
|
|
/// <returns></returns>
|
|
|
- public async Task<IEnumerable<ReplyResult>> GetMyReceiptCommentResult(int userId)
|
|
|
+ public async Task<IEnumerable<ReplyResult>> GetMyReceiptCommentResult(ReplyRequest request)
|
|
|
{
|
|
|
+ string sqlStr = string.Empty;
|
|
|
+ if (!string.IsNullOrEmpty(request.KeyWord))
|
|
|
+ sqlStr += $" and (a.Content like '%{request.KeyWord}%' or b.Name like '%request.KeyWord%')";
|
|
|
//获取回复我的
|
|
|
string sql = $@"SELECT
|
|
|
a.Id,
|
|
@@ -111,7 +118,7 @@ namespace GxPress.Service.Implement.Reply
|
|
|
INNER JOIN
|
|
|
tede_user b ON a.UserId = b.Id
|
|
|
WHERE
|
|
|
- a.pid > 0 AND a.userId = {userId}";
|
|
|
+ a.pid > 0 AND a.userId = {request.UserId} {sqlStr}";
|
|
|
var database = new Database(DatabaseType.MySql, ConfigHelper.GetValue("Database:ConnectionString"));
|
|
|
var connection = database.GetConnection();
|
|
|
var receipt = await connection.QueryAsync<ReplyResult>(sql);
|
|
@@ -136,7 +143,7 @@ namespace GxPress.Service.Implement.Reply
|
|
|
INNER JOIN
|
|
|
tede_user b ON a.UserId = b.Id
|
|
|
WHERE
|
|
|
- a.pid > 0 AND a.userId = {userId})";
|
|
|
+ a.pid > 0 AND a.userId = {request.UserId})";
|
|
|
var my = await connection.QueryAsync<ReplyResult>(sql);
|
|
|
foreach (var item in receipt)
|
|
|
{
|