消费详情接口

This commit is contained in:
许晓东
2021-10-11 21:11:27 +08:00
parent 2baf8d093e
commit 338101396f
5 changed files with 116 additions and 4 deletions

View File

@@ -78,4 +78,8 @@ public class ConsumerServiceImpl implements ConsumerService {
vos.sort(Comparator.comparing(ConsumerMemberVO::getClientId));
return ResponseData.create().data(vos).success();
}
@Override public ResponseData getConsumerDetail(String groupId) {
return ResponseData.create().data(consumerConsole.getConsumerDetail(Collections.singleton(groupId))).success();
}
}