| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- package com.goafanti.common.dao;
- import java.util.List;
- import com.goafanti.organization.bo.OrganizationListOut;
- import com.goafanti.common.model.OrganizationManagement;
- import com.goafanti.common.model.OrganizationManagementExample;
- import org.apache.ibatis.annotations.Param;
- public interface OrganizationManagementMapper {
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_management
- * @mbg.generated Thu Nov 30 11:09:29 CST 2017
- */
- long countByExample(OrganizationManagementExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_management
- * @mbg.generated Thu Nov 30 11:09:29 CST 2017
- */
- int deleteByExample(OrganizationManagementExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_management
- * @mbg.generated Thu Nov 30 11:09:29 CST 2017
- */
- int deleteByPrimaryKey(String id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_management
- * @mbg.generated Thu Nov 30 11:09:29 CST 2017
- */
- int insert(OrganizationManagement record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_management
- * @mbg.generated Thu Nov 30 11:09:29 CST 2017
- */
- int insertSelective(OrganizationManagement record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_management
- * @mbg.generated Thu Nov 30 11:09:29 CST 2017
- */
- List<OrganizationManagement> selectByExample(OrganizationManagementExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_management
- * @mbg.generated Thu Nov 30 11:09:29 CST 2017
- */
- OrganizationManagement selectByPrimaryKey(String id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_management
- * @mbg.generated Thu Nov 30 11:09:29 CST 2017
- */
- int updateByExampleSelective(@Param("record") OrganizationManagement record,
- @Param("example") OrganizationManagementExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_management
- * @mbg.generated Thu Nov 30 11:09:29 CST 2017
- */
- int updateByExample(@Param("record") OrganizationManagement record,
- @Param("example") OrganizationManagementExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_management
- * @mbg.generated Thu Nov 30 11:09:29 CST 2017
- */
- int updateByPrimaryKeySelective(OrganizationManagement record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table organization_management
- * @mbg.generated Thu Nov 30 11:09:29 CST 2017
- */
- int updateByPrimaryKey(OrganizationManagement record);
- List<OrganizationListOut> selectSuperId();
- /**
- * 新增
- * @param olo
- * @return
- */
- int insert1(OrganizationListOut olo);
- /**
- * æ ¹æ�®ç»„织å��称查组织编ï¿??
- */
- String selectDepNoByName(String name);
- /**
- * 查询相�上级下编�数�?
- */
- int selectDepNoCount(String depNo);
- /**
- * æ ¹æ�®ç»„织å��称查找负责ï¿??
- */
- String selectManagerIdByName(String name);
- }
|