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

com.fengwenyi.api.result.ListTemplate Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package com.fengwenyi.api.result;

import java.io.Serializable;
import java.util.List;

/**
 * @author Erwin Feng
 * @since 2022-06-13
 */
public class ListTemplate implements Serializable {

    private static final long serialVersionUID = 1673060065136736928L;

    /** 列表数据 */
    private List content;

    /** 用时 */
    private Long timeCost;

    public List getContent() {
        return content;
    }

    public ListTemplate setContent(List content) {
        this.content = content;
        return this;
    }

    public Long getTimeCost() {
        return timeCost;
    }

    public ListTemplate setTimeCost(Long timeCost) {
        this.timeCost = timeCost;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy