package com.kede.common.dao; import com.kede.common.model.Organization; import com.kede.common.model.OrganizationExample; import com.kede.organization.bo.OutOrganization; import java.util.List; import org.apache.ibatis.annotations.Param; public interface OrganizationMapper { /** * This method was generated by MyBatis Generator. This method corresponds to the database table organization * @mbg.generated Mon Dec 30 09:44:39 CST 2019 */ long countByExample(OrganizationExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table organization * @mbg.generated Mon Dec 30 09:44:39 CST 2019 */ int deleteByExample(OrganizationExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table organization * @mbg.generated Mon Dec 30 09:44:39 CST 2019 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by MyBatis Generator. This method corresponds to the database table organization * @mbg.generated Mon Dec 30 09:44:39 CST 2019 */ int insert(Organization record); /** * This method was generated by MyBatis Generator. This method corresponds to the database table organization * @mbg.generated Mon Dec 30 09:44:39 CST 2019 */ int insertSelective(Organization record); /** * This method was generated by MyBatis Generator. This method corresponds to the database table organization * @mbg.generated Mon Dec 30 09:44:39 CST 2019 */ List selectByExample(OrganizationExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table organization * @mbg.generated Mon Dec 30 09:44:39 CST 2019 */ Organization selectByPrimaryKey(Integer id); /** * This method was generated by MyBatis Generator. This method corresponds to the database table organization * @mbg.generated Mon Dec 30 09:44:39 CST 2019 */ int updateByExampleSelective(@Param("record") Organization record, @Param("example") OrganizationExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table organization * @mbg.generated Mon Dec 30 09:44:39 CST 2019 */ int updateByExample(@Param("record") Organization record, @Param("example") OrganizationExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table organization * @mbg.generated Mon Dec 30 09:44:39 CST 2019 */ int updateByPrimaryKeySelective(Organization record); /** * This method was generated by MyBatis Generator. This method corresponds to the database table organization * @mbg.generated Mon Dec 30 09:44:39 CST 2019 */ int updateByPrimaryKey(Organization record); OutOrganization selectByid(Integer id); }