CollectResponse.java 199 字节
Newer Older
1 2 3 4 5
package com.kwan.springbootkwan.entity.resp;

import lombok.Data;

@Data
6
public class CollectResponse {
7 8 9 10 11
    public Long code;
    public String msg;
    public String total;
    public Object data;
}