Рефакторинг
This commit is contained in:
parent
b502f4cddc
commit
68c2d6580d
@ -1,8 +1,9 @@
|
||||
package org.sadtech.autoresponder.entity;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import org.sadtech.autoresponder.util.Description;
|
||||
|
||||
/**
|
||||
@ -10,13 +11,14 @@ import org.sadtech.autoresponder.util.Description;
|
||||
*
|
||||
* @author upagge [07/07/2019]
|
||||
*/
|
||||
@Data
|
||||
@RequiredArgsConstructor
|
||||
@Getter
|
||||
@Setter
|
||||
@AllArgsConstructor
|
||||
@EqualsAndHashCode(of = "entityId")
|
||||
public class UnitPointer<U extends Unit> {
|
||||
|
||||
@Description("Идентификатор пользователя")
|
||||
private final Long entityId;
|
||||
private Long entityId;
|
||||
|
||||
@Description("Юнит, который был обработан")
|
||||
private U unit;
|
||||
|
Loading…
Reference in New Issue
Block a user