| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- 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<Organization> 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);
- }
|