package com.hz.employmentsite.mapper; import com.hz.employmentsite.model.PcDowork; import com.hz.employmentsite.model.PcDoworkExample; import java.util.List; import java.util.Map; import com.hz.employmentsite.vo.taskAndLog.RecordsCountVo; import org.apache.ibatis.annotations.Param; public interface PcDoworkMapper { long countByExample(PcDoworkExample example); int deleteByExample(PcDoworkExample example); int deleteByPrimaryKey(String doworkID); int insert(PcDowork row); int insertSelective(PcDowork row); List selectByExample(PcDoworkExample example); PcDowork selectByPrimaryKey(String doworkID); int updateByExampleSelective(@Param("row") PcDowork row, @Param("example") PcDoworkExample example); int updateByExample(@Param("row") PcDowork row, @Param("example") PcDoworkExample example); int updateByPrimaryKeySelective(PcDowork row); int updateByPrimaryKey(PcDowork row); /** * 查询工作日志当天记录的企业,求职人员等数据 * @param map * @return */ RecordsCountVo getRecordCounts(@Param("CreateUserId") String CreateUserId, @Param("WorkTime") String WorkTime); }