32 lines
480 B
Java
32 lines
480 B
Java
package top.baogutang.music.domain.res;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
*
|
|
* @description:
|
|
*
|
|
* @author: N1KO
|
|
* @date: 2024/12/10 : 17:35
|
|
*/
|
|
@Data
|
|
public class AbstractMusicRes implements Serializable {
|
|
|
|
private static final long serialVersionUID = -4002863447773637066L;
|
|
|
|
private String response;
|
|
|
|
private String requestId;
|
|
|
|
private Integer status;
|
|
|
|
private String message;
|
|
|
|
private Date createTime;
|
|
|
|
|
|
}
|