| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.UserBusiness;
- import com.goafanti.common.model.UserBusinessExample;
- import com.goafanti.customer.bo.BusinessListBo;
- import com.goafanti.customer.bo.BussinessFollowBo;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface UserBusinessMapper {
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table user_business
- * @mbg.generated Fri Nov 10 19:10:10 CST 2017
- */
- long countByExample(UserBusinessExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table user_business
- * @mbg.generated Fri Nov 10 19:10:10 CST 2017
- */
- int deleteByExample(UserBusinessExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table user_business
- * @mbg.generated Fri Nov 10 19:10:10 CST 2017
- */
- int deleteByPrimaryKey(String id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table user_business
- * @mbg.generated Fri Nov 10 19:10:10 CST 2017
- */
- int insert(UserBusiness record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table user_business
- * @mbg.generated Fri Nov 10 19:10:10 CST 2017
- */
- int insertSelective(UserBusiness record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table user_business
- * @mbg.generated Fri Nov 10 19:10:10 CST 2017
- */
- List<UserBusiness> selectByExample(UserBusinessExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table user_business
- * @mbg.generated Fri Nov 10 19:10:10 CST 2017
- */
- UserBusiness selectByPrimaryKey(String id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table user_business
- * @mbg.generated Fri Nov 10 19:10:10 CST 2017
- */
- int updateByExampleSelective(@Param("record") UserBusiness record, @Param("example") UserBusinessExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table user_business
- * @mbg.generated Fri Nov 10 19:10:10 CST 2017
- */
- int updateByExample(@Param("record") UserBusiness record, @Param("example") UserBusinessExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table user_business
- * @mbg.generated Fri Nov 10 19:10:10 CST 2017
- */
- int updateByPrimaryKeySelective(UserBusiness record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table user_business
- * @mbg.generated Fri Nov 10 19:10:10 CST 2017
- */
- int updateByPrimaryKey(UserBusiness record);
- List<BusinessListBo> findBusinessGlossory();
- int judgeBusiness(@Param("uid")String uid,@Param("businessGlossoryId")Integer businessGlossoryId,@Param("aid")String aid);
- List<UserBusiness> findBusinessByUAid(@Param("uid")String uid, @Param("aid")String aid);
- BussinessFollowBo findBusinessDetail(@Param("businessId")String businessId);
- BussinessFollowBo findFollowOneBusiness(@Param("ufbId") String ufbId);
-
- int selectFollowCountByUAid(@Param("uid")String uid, @Param("aid")String aid);
-
- }
|