Release 1.0
Первый релиз. Возможности 1) Автоматический ответ на выбор по ключевым словам пользователя 2) Вставка слов в ответ от пользоваетля 3) Добавление пользователя, если его не было 4) Формирование меню
This commit is contained in:
parent
687954f799
commit
59e4bcd273
2
pom.xml
2
pom.xml
@ -6,7 +6,7 @@
|
||||
|
||||
<groupId>org.sadtech.autoresponder</groupId>
|
||||
<artifactId>core</artifactId>
|
||||
<version>0.1-SNAPSHOT</version>
|
||||
<version>1.0</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
@ -5,7 +5,9 @@ import org.sadtech.autoresponder.entity.Person;
|
||||
public interface PersonService {
|
||||
|
||||
Person getPersonById(Integer integer);
|
||||
|
||||
void addPerson(Person person);
|
||||
|
||||
boolean checkPerson(Integer idPerson);
|
||||
|
||||
}
|
||||
|
@ -3,6 +3,7 @@ package org.sadtech.autoresponder.service;
|
||||
import org.sadtech.autoresponder.entity.Unit;
|
||||
|
||||
public interface UnitService {
|
||||
|
||||
Unit nextUnit(Unit unit, String message);
|
||||
|
||||
Unit getUnitById(Integer idUnit);
|
||||
|
Loading…
Reference in New Issue
Block a user