CommentsServiceImpl.java 3.5 KB
package com.cnlive.shenhe.serviceImpl;

import com.alibaba.fastjson.JSONObject;
import com.cnlive.shenhe.entity.ShyComments;
import com.cnlive.shenhe.entity.ShySites;
import com.cnlive.shenhe.mapper.ShyCommentsMapper;
import com.cnlive.shenhe.mapper.ShySitesMapper;
import com.cnlive.shenhe.utils.CommonUtils;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import tk.mybatis.mapper.entity.Example;

import java.util.Date;
import java.util.List;

/**
 * @Auther: chenhao
 * @Date: 2018/12/4 17:30
 * @Description:
 */
@Service
public class CommentsServiceImpl {
    @Autowired
    ShyCommentsMapper shyCommentsMapper;
    @Autowired
    ShySitesMapper shySitesMapper;


    public List<ShySites> getBusiness(ShySites shySites) {
        List<ShySites> sitesList = shySitesMapper.select(shySites);
        return sitesList;
    }

    public int impotComments(ShyComments shyComments) {
        int result = shyCommentsMapper.insert(shyComments);
        return result;
    }

    public int updateComment(JSONObject json, Integer id, String auditor_id) {
        ShyComments shyComments = shyCommentsMapper.selectByPrimaryKey(id);
        shyComments.setAuditor_id(auditor_id);
        shyComments.setState(json.getInteger("state"));
        shyComments.setMsg(json.getString("msg"));
        return shyCommentsMapper.updateByPrimaryKeySelective(shyComments);
    }

    public PageInfo<ShyComments> getPage(String activity_id, String content, Integer is_hot, Date start_date, Date end_date, String states, String auditor, Integer page, Integer pageSize, String orderByClause, Integer spid) {
        Example example = new Example(ShyComments.class);
        Example.Criteria criteria = example.createCriteria();
        if (CommonUtils.isNotEmpty(orderByClause)) {
            example.setOrderByClause(orderByClause);
        }else {
            example.setOrderByClause("comment_time desc");
        }
        if (CommonUtils.isNotNull(start_date) && CommonUtils.isNotNull(end_date)) {
            criteria.andGreaterThanOrEqualTo("comment_time", start_date);
            criteria.andLessThanOrEqualTo("comment_time", end_date);
        }
        if (CommonUtils.isNotEmpty(content)) {
            criteria.andLike("comment_content", "%" + content + "%");
        }
        if (CommonUtils.isNotEmpty(auditor)) {
            criteria.andEqualTo("auditor", auditor);
        }
        if (CommonUtils.isNotNull(spid)) {
            criteria.andEqualTo("spid", spid);
        }
        if (CommonUtils.isNotNull(is_hot)) {
            criteria.andEqualTo("is_hot", is_hot);
        }
        if (CommonUtils.isNotEmpty(activity_id)) {
            criteria.andLike("activity_id", "%" + activity_id + "%");
        }
        if (CommonUtils.isNotEmpty(states)) {
            Example.Criteria criteria1 = example.createCriteria();
            String[] stas = states.split(",");
            for (String s:stas) {
                criteria1.orEqualTo("state", Integer.parseInt(s));
            }
            example.and(criteria1);
        }
        PageHelper.startPage(page, pageSize, true);
        List<ShyComments> commentsList = shyCommentsMapper.selectByExample(example);
        PageInfo<ShyComments> pageInfo = new PageInfo<>(commentsList);
        return pageInfo;
    }

    public ShyComments getDetailsComment(Integer id) {
        ShyComments comment = shyCommentsMapper.selectByPrimaryKey(id);
        return comment;
    }
}