Переосмыслен юнит сохранения
Теперь это самостоятельный юнит, который ничего не отправляет пользователю, а только сохраняет пришедшие данные
This commit is contained in:
parent
809d17715e
commit
3873aa35c3
@ -59,7 +59,13 @@ public class VkApi {
|
||||
} catch (ApiException | ClientException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return temp != null ? temp.get(0).getCity().getTitle() : null;
|
||||
if (temp!=null) {
|
||||
if (temp.get(0).getCity()!=null) {
|
||||
log.info("Запрошен город пользователя: " + temp.get(0).getCity().getTitle());
|
||||
return temp.get(0).getCity().getTitle();
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
|
@ -1,10 +1,22 @@
|
||||
package org.sadtech.vkbot.core.entity;
|
||||
|
||||
//@TODO: Дописать класс
|
||||
public class Comment {
|
||||
|
||||
private Integer postId;
|
||||
private Integer fromId;
|
||||
private Person person;
|
||||
private String text;
|
||||
private Integer data;
|
||||
|
||||
public Comment() {
|
||||
|
||||
}
|
||||
|
||||
public Person getPerson() {
|
||||
return person;
|
||||
}
|
||||
|
||||
public void setPerson(Person person) {
|
||||
this.person = person;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user