23 lines
626 B
Java
23 lines
626 B
Java
|
|
package com.nis.web.dao.basics;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
|
||
|
|
import com.nis.domain.basics.UrlCommGroupCfg;
|
||
|
|
import com.nis.web.dao.CrudDao;
|
||
|
|
import com.nis.web.dao.MyBatisDao;
|
||
|
|
|
||
|
|
@MyBatisDao
|
||
|
|
public interface UrlCommGroupDao extends CrudDao<UrlCommGroupDao>{
|
||
|
|
|
||
|
|
// 查询列表
|
||
|
|
public List<UrlCommGroupCfg> findAllPageList(UrlCommGroupCfg entity);
|
||
|
|
|
||
|
|
public List<UrlCommGroupCfg> findByPage(@Param("ids")String ids);
|
||
|
|
|
||
|
|
public List<UrlCommGroupCfg> findInfoByCfgId(@Param("cfgId")String cfgId);
|
||
|
|
//新增
|
||
|
|
public int insertUrlCommGroupCfg(UrlCommGroupCfg entity);
|
||
|
|
}
|