|
@@ -466,7 +466,10 @@ public class RedPackApplication : IRedPackApplication, IScopeDependency
|
|
|
|
|
|
public ISugarQueryable<SnapshotRedPackRecordSendOutDto> GetRedPackRecordDetailAsync(SnapshotRedPackRecordSendInDto dto)
|
|
|
{
|
|
|
- throw new NotImplementedException();
|
|
|
+ var query = _redPackRecordRepository.Queryable()
|
|
|
+ .Where(m => m.DistributionState != EReadPackSendStatus.Unsend)
|
|
|
+ .Select(m => new SnapshotRedPackRecordSendOutDto());
|
|
|
+ return query;
|
|
|
}
|
|
|
|
|
|
|