package com.idea.oa.apply.mapper; import com.idea.oa.apply.model.ApplyOffWorkTime; import com.idea.oa.apply.model.ApplyOffWorkTimeExample; import org.apache.ibatis.annotations.Param; import java.util.List; public interface ApplyOffWorkTimeMapper { long countByExample(ApplyOffWorkTimeExample example); int deleteByExample(ApplyOffWorkTimeExample example); int deleteByPrimaryKey(String id); int insert(ApplyOffWorkTime record); int insertSelective(ApplyOffWorkTime record); List selectByExample(ApplyOffWorkTimeExample example); ApplyOffWorkTime selectByPrimaryKey(String id); int updateByExampleSelective(@Param("record") ApplyOffWorkTime record, @Param("example") ApplyOffWorkTimeExample example); int updateByExample(@Param("record") ApplyOffWorkTime record, @Param("example") ApplyOffWorkTimeExample example); int updateByPrimaryKeySelective(ApplyOffWorkTime record); int updateByPrimaryKey(ApplyOffWorkTime record); }