http://jira.mfd.msk:8088/browse/CLS-550 обратная совместимость

This commit is contained in:
AKurakin 2023-09-28 11:41:49 +03:00
parent 83ff343c92
commit 03aa29413c

View file

@ -13,6 +13,10 @@ public class NotificationUpdateAction implements IAction<NotificationUpdateReque
@ApiModelProperty(value = "Наименование статуса сообщения", example = "ACTV") @ApiModelProperty(value = "Наименование статуса сообщения", example = "ACTV")
@JsonProperty @JsonProperty
public String notificationStatus; public String notificationStatus;
@ApiModelProperty(value = "Наименование отправителя (не исопльзуется)", example = "1234")
@JsonProperty(required = false)
@Deprecated
public Long senderId;
@Override @Override
public NotificationUpdateRequest toRequest() { public NotificationUpdateRequest toRequest() {
@ -44,4 +48,11 @@ public class NotificationUpdateAction implements IAction<NotificationUpdateReque
this.notificationStatus = notificationStatus; this.notificationStatus = notificationStatus;
} }
public Long getSenderId() {
return senderId;
}
public void setSenderId(Long senderId) {
this.senderId = senderId;
}
} }