package com.goafanti.common.dao; import com.goafanti.common.model.DemandFollow; import com.goafanti.common.model.DemandFollowExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface DemandFollowMapper { /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ long countByExample(DemandFollowExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ int deleteByExample(DemandFollowExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow * @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 * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ int insert(DemandFollow record); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ int insertSelective(DemandFollow record); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ List selectByExample(DemandFollowExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ DemandFollow selectByPrimaryKey(String id); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ int updateByExampleSelective(@Param("record") DemandFollow record, @Param("example") DemandFollowExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ int updateByExample(@Param("record") DemandFollow record, @Param("example") DemandFollowExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ int updateByPrimaryKeySelective(DemandFollow record); /** * This method was generated by MyBatis Generator. This method corresponds to the database table demand_follow * @mbg.generated Thu Mar 22 14:44:52 CST 2018 */ int updateByPrimaryKey(DemandFollow record); }