CmsIsReadMapper.java 600 Bytes
Newer Older
yuquan.zhu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
package cn.timer.api.dao.qyxx;

import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;

import cn.timer.api.bean.qyxx.CmsIsRead;
import cn.timer.api.dto.qyxx.QyxxIsReadDto;

/**
 * OA消息内容表
 * 
 * @author dsc 2019-12-12
 */
@Repository
public interface CmsIsReadMapper extends BaseMapper<CmsIsRead> {

	/**
	 * 查询已读人
	 * 
	 * @param mid
	 * @param orgCode
	 * @return
	 */
	QyxxIsReadDto queryIsReadEmp(@Param(value = "orgCode") Integer orgCode, @Param(value = "mid") Integer mid);

}