mirror of
https://github.com/201206030/novel.git
synced 2025-07-05 04:46:38 +00:00
漫画专区上线
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user