漫画专区上线

This commit is contained in:
xiongxiaoyang
2019-11-17 13:31:10 +08:00
parent d8bddd9161
commit 63e18b4c25
6 changed files with 358 additions and 7 deletions

View File

@ -211,6 +211,10 @@ public class BookService {
catName = "轻小说";
break;
}
case 9: {
catName = "漫画";
break;
}
default: {
break;
}
@ -458,6 +462,28 @@ public class BookService {
}
public String getMhCatNameById(Integer softCat) {
String catName = "其他";
switch (softCat) {
case 3262: {
catName = "少年漫";
break;
}
case 3263: {
catName = "少女漫";
break;
}
default: {
break;
}
}
return catName;
}
public void sendBullet(Long contentId, String bullet) {
ScreenBullet screenBullet = new ScreenBullet();