Commit 9ca222d8 by 阮思源

加个字段

parent f6986d5c
......@@ -555,6 +555,9 @@ public class BookGroupBizImpl implements BookGroupBiz {
public Map<String, Object> getBookNameByBookGroupId(Long bookGroupId) throws BizException {
Map<String, Object> result = new HashMap<>();
BookGroupDTO bookGroupDTO = bookGroupDao.getDTOById(bookGroupId);
if (bookGroupDTO != null) {
result.put("joinGroupType", bookGroupDTO.getJoinGroupType());
}
if (null != bookGroupDTO && null != bookGroupDTO.getBookId()) {
BookDto bookDto = bookBiz.getBaseById(bookGroupDTO.getBookId());
if (null != bookDto) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment