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

com.github.fosin.cdp.mvc.service.IRetrieveService Maven / Gradle / Ivy

package com.github.fosin.cdp.mvc.service;


import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;

import java.io.Serializable;
import java.util.Collection;

/**
 * 2017/12/29.
 * Time:12:37
 *
 * @author fosin
 */
@Api("查询数据类服务")
public interface IRetrieveService extends IService {

    @ApiOperation("查询所有数据服务")
    Collection findAll();

    @ApiOperation("根据主键ID查找一条数据服务")
    E findOne(ID id);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy