| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- 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<DemandFollowDetail> 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);
- }
|