package com.goafanti.common.dao; import com.goafanti.common.model.DemandFollowDetail; import com.goafanti.common.model.DemandFollowDetailExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface DemandFollowDetailMapper { /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow_detail * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ long countByExample(DemandFollowDetailExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow_detail * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ int deleteByExample(DemandFollowDetailExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow_detail * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ int deleteByPrimaryKey(String id); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow_detail * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ int insert(DemandFollowDetail record); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow_detail * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ int insertSelective(DemandFollowDetail record); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow_detail * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ List selectByExample(DemandFollowDetailExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow_detail * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ DemandFollowDetail selectByPrimaryKey(String id); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow_detail * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ int updateByExampleSelective(@Param("record") DemandFollowDetail record, @Param("example") DemandFollowDetailExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow_detail * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ int updateByExample(@Param("record") DemandFollowDetail record, @Param("example") DemandFollowDetailExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow_detail * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ int updateByPrimaryKeySelective(DemandFollowDetail record); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow_detail * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ int updateByPrimaryKey(DemandFollowDetail record); }