添加getMarketBotById函数webhook字段

This commit is contained in:
623756217 2023-01-10 16:19:21 +08:00
parent 668de6d49b
commit 57e64bedf0
2 changed files with 3 additions and 0 deletions

View File

@ -524,6 +524,7 @@ public class UserService extends AbstractUserBot implements IUserService {
marketBotVO.setMarketName(marketBot.getMarketName());
marketBotVO.setCategory(marketBot.getCategory());
marketBotVO.setMarketIntro(marketBot.getMarketIntro());
marketBotVO.setWebhook(marketBot.getWebhook());
return marketBotVO;
}

View File

@ -40,4 +40,6 @@ public class MarketBotVO implements Serializable {
private String category;
private String marketIntro;
private String webhook;
}