All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.paas.bean.vo.ResponseVO Maven / Gradle / Ivy

Go to download

Custom Spring Boot Starter,Provide Http Request Log Print And Isolation Spring Bean Power

There is a newer version: 0.1.7
Show newest version
package com.paas.bean.vo;

import com.alibaba.fastjson.annotation.JSONField;
import com.paas.bean.BasicResponse;
import com.paas.constant.FieldConstant;

/**
 * @ClassName ResponseVO
 * @Date 2020/12/8 14:13
 * @Auther wangyongyong
 * @Version 1.0
 * @Description 返回报文 VO
 */
public class ResponseVO extends BasicResponse
{
    @JSONField(name = FieldConstant.D)
    private T data;

    public T getData()
    {
        return data;
    }

    public void setData(T data)
    {
        this.data = data;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy