| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- 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<DemandFollow> 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);
- }
|