CommentResponse.java 201 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11
package com.kwan.springbootkwan.entity.resp;

import lombok.Data;

@Data
public class CommentResponse {
    public int code;
    public String message;
    public String traceId;
    public int data;
}