| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.UserBusiness;
- import com.goafanti.common.model.UserBusinessExample;
- import com.goafanti.customer.bo.BusinessListBo;
- 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(String uid, String aid);
- }
|