| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.OrganizationContactBook;
- import com.goafanti.common.model.OrganizationContactBookExample;
- import com.goafanti.user.bo.UserContactBo;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface OrganizationContactBookMapper {
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Sun Nov 19 20:34:03 CST 2017
- */
- long countByExample(OrganizationContactBookExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Sun Nov 19 20:34:03 CST 2017
- */
- int deleteByExample(OrganizationContactBookExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Sun Nov 19 20:34:03 CST 2017
- */
- int deleteByPrimaryKey(String id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Sun Nov 19 20:34:03 CST 2017
- */
- int insert(OrganizationContactBook record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Sun Nov 19 20:34:03 CST 2017
- */
- int insertSelective(OrganizationContactBook record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Sun Nov 19 20:34:03 CST 2017
- */
- List<OrganizationContactBook> selectByExample(OrganizationContactBookExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Sun Nov 19 20:34:03 CST 2017
- */
- OrganizationContactBook selectByPrimaryKey(String id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Sun Nov 19 20:34:03 CST 2017
- */
- int updateByExampleSelective(@Param("record") OrganizationContactBook record,
- @Param("example") OrganizationContactBookExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Sun Nov 19 20:34:03 CST 2017
- */
- int updateByExample(@Param("record") OrganizationContactBook record,
- @Param("example") OrganizationContactBookExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Sun Nov 19 20:34:03 CST 2017
- */
- int updateByPrimaryKeySelective(OrganizationContactBook record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Sun Nov 19 20:34:03 CST 2017
- */
- int updateByPrimaryKey(OrganizationContactBook record);
-
- int checkContacts(@Param("uid")String uid,@Param("mobile")String mobile,@Param("aid")String aid);
- int updateMainContact(@Param("ocbId")String ocbId);
-
- int updateSubContact(@Param("uid")String uid);
- List<UserContactBo> selectContactByUid(String uid);
-
- }
|