Url分组配置修改、删除和审核服务端
This commit is contained in:
@@ -9,14 +9,30 @@ import com.nis.web.dao.CrudDao;
|
||||
import com.nis.web.dao.MyBatisDao;
|
||||
|
||||
@MyBatisDao
|
||||
public interface UrlCommGroupDao extends CrudDao<UrlCommGroupDao>{
|
||||
public interface UrlCommGroupDao extends CrudDao<UrlCommGroupCfg>{
|
||||
|
||||
// 查询列表
|
||||
public List<UrlCommGroupCfg> findAllPageList(UrlCommGroupCfg entity);
|
||||
|
||||
public List<UrlCommGroupCfg> findByPage(@Param("ids")String ids);
|
||||
|
||||
public List<UrlCommGroupCfg> findInfoByCfgId(@Param("cfgId")String cfgId);
|
||||
public List<UrlCommGroupCfg> findInfoByCfgId(@Param("cfgId")Long cfgId);
|
||||
//新增
|
||||
public int insertUrlCommGroupCfg(UrlCommGroupCfg entity);
|
||||
|
||||
public Integer findUrlUdFlag(@Param("groupId")Integer groupId);
|
||||
|
||||
public int updateUrlUdFlag(@Param("groupId")Integer groupId,@Param("udFlag")Integer udFlag);
|
||||
|
||||
//修改
|
||||
public int update(UrlCommGroupCfg entity);
|
||||
|
||||
//删除
|
||||
public int delete(@Param("ids")String ids);
|
||||
|
||||
public List<UrlCommGroupCfg> getByIds(@Param("ids")String ids);
|
||||
|
||||
|
||||
public Integer getGroupIdCount(@Param("groupId")String groupId);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user