| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- package com.goafanti.common.dao;
- import java.util.List;
- import com.goafanti.app.bo.AppConfigBo;
- import com.goafanti.common.model.AppConfig;
- import com.goafanti.common.model.AppConfigExample;
- import org.apache.ibatis.annotations.Param;
- public interface AppConfigMapper {
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
- * @mbg.generated Wed Jan 24 16:21:41 CST 2018
- */
- long countByExample(AppConfigExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
- * @mbg.generated Wed Jan 24 16:21:41 CST 2018
- */
- int deleteByExample(AppConfigExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
- * @mbg.generated Wed Jan 24 16:21:41 CST 2018
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
- * @mbg.generated Wed Jan 24 16:21:41 CST 2018
- */
- int insert(AppConfig record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
- * @mbg.generated Wed Jan 24 16:21:41 CST 2018
- */
- int insertSelective(AppConfig record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
- * @mbg.generated Wed Jan 24 16:21:41 CST 2018
- */
- List<AppConfig> selectByExample(AppConfigExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
- * @mbg.generated Wed Jan 24 16:21:41 CST 2018
- */
- AppConfig selectByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
- * @mbg.generated Wed Jan 24 16:21:41 CST 2018
- */
- int updateByExampleSelective(@Param("record") AppConfig record, @Param("example") AppConfigExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
- * @mbg.generated Wed Jan 24 16:21:41 CST 2018
- */
- int updateByExample(@Param("record") AppConfig record, @Param("example") AppConfigExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
- * @mbg.generated Wed Jan 24 16:21:41 CST 2018
- */
- int updateByPrimaryKeySelective(AppConfig record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
- * @mbg.generated Wed Jan 24 16:21:41 CST 2018
- */
- int updateByPrimaryKey(AppConfig record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table app_config
- * @mbg.generated Wed Jan 24 16:14:16 CST 2018
- */
- AppConfigBo getAppRelease();
- }
|