| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.OrganizationContactBook;
- import com.goafanti.common.model.OrganizationContactBookExample;
- import com.goafanti.user.bo.InputUserChannel;
- 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 Fri Jun 05 08:58:43 CST 2020
- */
- long countByExample(OrganizationContactBookExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Fri Jun 05 08:58:43 CST 2020
- */
- int deleteByExample(OrganizationContactBookExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Fri Jun 05 08:58:43 CST 2020
- */
- int deleteByPrimaryKey(String id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Fri Jun 05 08:58:43 CST 2020
- */
- int insert(OrganizationContactBook record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Fri Jun 05 08:58:43 CST 2020
- */
- int insertSelective(OrganizationContactBook record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Fri Jun 05 08:58:43 CST 2020
- */
- List<OrganizationContactBook> selectByExample(OrganizationContactBookExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Fri Jun 05 08:58:43 CST 2020
- */
- OrganizationContactBook selectByPrimaryKey(String id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Fri Jun 05 08:58:43 CST 2020
- */
- 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 Fri Jun 05 08:58:43 CST 2020
- */
- 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 Fri Jun 05 08:58:43 CST 2020
- */
- int updateByPrimaryKeySelective(OrganizationContactBook record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_contact_book
- * @mbg.generated Fri Jun 05 08:58:43 CST 2020
- */
- 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);
- void updateDimissionTransfer(@Param("aid")String aid, @Param("transferId")String transferId);
- void updateAdmin(@Param("uid")String uid, @Param("aid")String aid);
- void insertBatch(List<InputUserChannel> list);
- void updateByUids(@Param("list")List<String> list, @Param("aid")String aid);
- OrganizationContactBook getMajor(@Param("uid")String uid, @Param("aid")String aid);
- }
|