| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- package com.minpay.db.table.mapper;
- import com.minpay.db.table.model.ImPermission;
- import com.minpay.db.table.model.ImPermissionExample;
- import com.minpay.db.table.model.ImPermissionKey;
- import com.startup.minpay.frame.jdbc.IMINMybatisEntityMapper;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface ImPermissionMapper extends IMINMybatisEntityMapper<ImPermission, ImPermissionKey, ImPermissionExample> {
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table im_permission
- *
- * @mbggenerated
- */
- int countByExample(ImPermissionExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table im_permission
- *
- * @mbggenerated
- */
- int deleteByExample(ImPermissionExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table im_permission
- *
- * @mbggenerated
- */
- int deleteByPrimaryKey(ImPermissionKey key);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table im_permission
- *
- * @mbggenerated
- */
- int insert(ImPermission record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table im_permission
- *
- * @mbggenerated
- */
- int insertSelective(ImPermission record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table im_permission
- *
- * @mbggenerated
- */
- List<ImPermission> selectByExample(ImPermissionExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table im_permission
- *
- * @mbggenerated
- */
- ImPermission selectByPrimaryKey(ImPermissionKey key);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table im_permission
- *
- * @mbggenerated
- */
- int updateByExampleSelective(@Param("record") ImPermission record, @Param("example") ImPermissionExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table im_permission
- *
- * @mbggenerated
- */
- int updateByExample(@Param("record") ImPermission record, @Param("example") ImPermissionExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table im_permission
- *
- * @mbggenerated
- */
- int updateByPrimaryKeySelective(ImPermission record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table im_permission
- *
- * @mbggenerated
- */
- int updateByPrimaryKey(ImPermission record);
- }
|