23 lines
555 B
Java
23 lines
555 B
Java
package com.gis3c.ol.dao;
|
|
|
|
import com.gis3c.common.persistence.annotation.C3olDao;
|
|
import com.gis3c.ol.entity.View;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Created by hukekuan on 2017/12/15.
|
|
*/
|
|
@C3olDao
|
|
public interface ViewDao {
|
|
public List<View> findViewsByByPage(
|
|
@Param("pageSize") Integer pageSize,
|
|
@Param("currentPage") Integer currentPage);
|
|
|
|
public View findeViewById(String viewId);
|
|
public View findeViewByName(String viewName);
|
|
|
|
public Integer insertView(View view);
|
|
}
|