1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- package com.sooka.module.web.cms.service;
- import com.github.pagehelper.PageInfo;
- import com.sooka.common.base.BaseService;
- import com.sooka.module.web.cms.vo.CxcVo;
- import com.sooka.module.web.cms.vo.TCmsContentVo;
- import com.sooka.mybatis.model.TCmsContent;
- import com.sooka.mybatis.model.TCmsModelFiled;
- import java.sql.SQLException;
- import java.util.List;
- import java.util.Map;
- /**
- * Description:内容
- *
- *
- * @create 2017-04-18
- **/
- public interface ContentService extends BaseService<TCmsContent,Long> {
- PageInfo<TCmsContent> page(Integer pageNumber, Integer pageSize, TCmsContentVo pojo);
- /*岔信村列表*/
- PageInfo<CxcVo> pages(Integer pageNumber, Integer pageSize, TCmsContentVo pojo);
- Map findContentByContentIdAndTableName(Long contentId, String tableName);
- /*回收站*/
- String recovery(Long[] ids);
- String save(TCmsContent content, String tableName, Map<String, Object> formParam, String[] tag) throws SQLException;
- String update(TCmsContent content, String tableName, List<TCmsModelFiled> cmsModelFileds, Map<String, Object> formParam, String[] tag) throws SQLException;
- PageInfo<Map> findContentListBySiteIdAndCategoryId(Integer siteId,
- Long categoryId,
- Integer orderBy,
- Integer pageNumber,
- Integer pageSize,
- Integer hasChild,
- Integer isHot,
- Integer isPic,
- Integer isRecommend);
- PageInfo<Map> findTopicContentListBySiteIdAndCategoryIds(Integer siteId,
- Long[] categoryIds,
- Integer orderBy,
- Integer size,
- Integer isHot,
- Integer isPic,
- Integer isRecommend);
- PageInfo<Map> page(Integer pageNumber, Integer siteId, Long categoryId);
- PageInfo<TCmsContent> findContentListByModelFiledValue(int pageNumber, Long categoryId, String tableName, Map<String, Object> param);
- void viewUpdate(Long contentId);
- String findAllMonthCount();
- Integer AllCount();
- List<TCmsContent> findByCategoryId(Long categoryId);
- PageInfo<TCmsContent> QueryTitleDescription(int pageNumber,Map<String,Object> map);
- PageInfo<TCmsContent> SearchTitleFor(int pageNumber,Map<String,Object> map);
- PageInfo<TCmsContent> certificateQuery(Integer pageNumber, Map<String, Object> map);
- PageInfo<TCmsContent> studyBmList(Integer pageNumber, Map<String, Object> map);
- List<TCmsContent> certificateQueryList(Map<String, Object> map);
- int contentBmApp(Map<String, Object> map);
- }
|