|
@@ -283,20 +283,38 @@ namespace GxPress.Repository.Implement
|
|
|
}
|
|
|
public async Task<List<OftenContactInfo>> GetContactInfosAsync(OftenContactSearchRequest request)
|
|
|
{
|
|
|
+ var chatConst = GxPress.EnumConst.AllTypeConst.Wechat.GetHashCode();
|
|
|
var sql =
|
|
|
- $"select a.*,b.* from tede_middle a left join tede_often_contact b on a.MiddleId=b.Id where a.FolderType=10 and a.UserId={request.UserId} and a.ParentId={request.IndividualGroupId} and a.IsDelete=0 order by a. IsTop desc,a.LastModifiedDate desc";
|
|
|
+ $@"SELECT
|
|
|
+ a.Id,
|
|
|
+ a.AttributeValue,
|
|
|
+ a.FolderName,
|
|
|
+ a.FolderType,
|
|
|
+ b.CreatedDate,
|
|
|
+ b.LastModifiedDate,
|
|
|
+ b.UserId,
|
|
|
+ b.ContactUserId,
|
|
|
+ b.IndividualGroupId,
|
|
|
+ b.UpdateTime,
|
|
|
+ b.ChatType,
|
|
|
+ b.IsBlack,
|
|
|
+ a.IsTop,
|
|
|
+ a.IsDelete
|
|
|
+ FROM
|
|
|
+ tede_middle a
|
|
|
+ LEFT JOIN
|
|
|
+ tede_often_contact b ON a.MiddleId = b.Id
|
|
|
+ WHERE
|
|
|
+ a.FolderType = {chatConst} AND a.UserId = {request.UserId}
|
|
|
+ AND a.ParentId = {request.IndividualGroupId}
|
|
|
+ AND a.IsDelete = 0
|
|
|
+ ORDER BY a.IsTop DESC , a.LastModifiedDate DESC";
|
|
|
var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
|
var database = new Database(databaseType, _connectionString);
|
|
|
var connection = database.GetConnection();
|
|
|
var result =
|
|
|
await connection
|
|
|
- .QueryAsync<OftenContactInfo, Entity.OftenContact, OftenContactInfo>(sql,
|
|
|
- (oftenContactInfo, oftenContact) =>
|
|
|
- {
|
|
|
- oftenContactInfo.ChatType = oftenContact == null ? 0 : oftenContact.ChatType;
|
|
|
- oftenContactInfo.ContactUserId = oftenContact == null ? "" : oftenContact.ContactUserId;
|
|
|
- return oftenContactInfo;
|
|
|
- }, splitOn: "Id,Id");
|
|
|
+ .QueryAsync<OftenContactInfo>(sql);
|
|
|
return result.ToList();
|
|
|
}
|
|
|
|