2025-12-10 19:12:54 +07:00
|
|
|
package ru.soune.nocopy.dto;
|
2025-12-10 02:37:31 +07:00
|
|
|
|
2026-01-14 19:10:22 +07:00
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
2025-12-10 02:37:31 +07:00
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
@AllArgsConstructor
|
2026-01-14 19:10:22 +07:00
|
|
|
@JsonFormat(with = JsonFormat.Feature.ACCEPT_CASE_INSENSITIVE_PROPERTIES)
|
2025-12-10 02:37:31 +07:00
|
|
|
public class BaseResponse {
|
|
|
|
|
@JsonProperty("msg_id")
|
|
|
|
|
private Integer msgId;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("message_code")
|
|
|
|
|
private Integer messageCode;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("message_desc")
|
|
|
|
|
private String messageDesc;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("message_body")
|
|
|
|
|
private Object messageBody;
|
|
|
|
|
}
|