96 lines
2.8 KiB
Java
96 lines
2.8 KiB
Java
package com.jsh.erp.datasource.mappers;
|
|
|
|
import com.jsh.erp.datasource.entities.Organization;
|
|
import com.jsh.erp.datasource.entities.OrganizationExample;
|
|
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 jsh_organization
|
|
*
|
|
* @mbggenerated
|
|
*/
|
|
int countByExample(OrganizationExample example);
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method corresponds to the database table jsh_organization
|
|
*
|
|
* @mbggenerated
|
|
*/
|
|
int deleteByExample(OrganizationExample example);
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method corresponds to the database table jsh_organization
|
|
*
|
|
* @mbggenerated
|
|
*/
|
|
int deleteByPrimaryKey(Long id);
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method corresponds to the database table jsh_organization
|
|
*
|
|
* @mbggenerated
|
|
*/
|
|
int insert(Organization record);
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method corresponds to the database table jsh_organization
|
|
*
|
|
* @mbggenerated
|
|
*/
|
|
int insertSelective(Organization record);
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method corresponds to the database table jsh_organization
|
|
*
|
|
* @mbggenerated
|
|
*/
|
|
List<Organization> selectByExample(OrganizationExample example);
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method corresponds to the database table jsh_organization
|
|
*
|
|
* @mbggenerated
|
|
*/
|
|
Organization selectByPrimaryKey(Long id);
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method corresponds to the database table jsh_organization
|
|
*
|
|
* @mbggenerated
|
|
*/
|
|
int updateByExampleSelective(@Param("record") Organization record, @Param("example") OrganizationExample example);
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method corresponds to the database table jsh_organization
|
|
*
|
|
* @mbggenerated
|
|
*/
|
|
int updateByExample(@Param("record") Organization record, @Param("example") OrganizationExample example);
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method corresponds to the database table jsh_organization
|
|
*
|
|
* @mbggenerated
|
|
*/
|
|
int updateByPrimaryKeySelective(Organization record);
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method corresponds to the database table jsh_organization
|
|
*
|
|
* @mbggenerated
|
|
*/
|
|
int updateByPrimaryKey(Organization record);
|
|
} |