19 lines
331 B
Java
19 lines
331 B
Java
package com.bamanker.dailylove.domain;
|
|
|
|
import lombok.Data;
|
|
import org.springframework.web.bind.annotation.ResponseStatus;
|
|
|
|
/**
|
|
* @descriptions 错误响应类
|
|
* @author bamanker
|
|
* @date 2026/1/13 23:36
|
|
*/
|
|
@Data
|
|
public class ErrorResponse {
|
|
private Integer code;
|
|
private String message;
|
|
|
|
private Long timestamp;
|
|
|
|
}
|