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

com.github.hugh.bean.vo.ResultDataVO Maven / Gradle / Ivy

The newest version!
package com.github.hugh.bean.vo;

import io.swagger.annotations.Api;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import java.util.List;

/**
 * 统一返回结果集
 *
 * @author hugh
 * @since 2.1.13
 */
@Data
@Api("统一返回data对象")
public class ResultDataVO {

    @ApiModelProperty(required = true, value = "对象集合")
    private List list;//
    @ApiModelProperty(required = true, value = "总数")
    private long totalCount;
 
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy