| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.OfficialFeePrice;
- import com.goafanti.common.model.OfficialFeePriceExample;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface OfficialFeePriceMapper {
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table official_fee_price
- *
- * @mbg.generated Thu Sep 03 15:51:31 CST 2020
- */
- long countByExample(OfficialFeePriceExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table official_fee_price
- *
- * @mbg.generated Thu Sep 03 15:51:31 CST 2020
- */
- int deleteByExample(OfficialFeePriceExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table official_fee_price
- *
- * @mbg.generated Thu Sep 03 15:51:31 CST 2020
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table official_fee_price
- *
- * @mbg.generated Thu Sep 03 15:51:31 CST 2020
- */
- int insert(OfficialFeePrice record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table official_fee_price
- *
- * @mbg.generated Thu Sep 03 15:51:31 CST 2020
- */
- int insertSelective(OfficialFeePrice record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table official_fee_price
- *
- * @mbg.generated Thu Sep 03 15:51:31 CST 2020
- */
- List<OfficialFeePrice> selectByExample(OfficialFeePriceExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table official_fee_price
- *
- * @mbg.generated Thu Sep 03 15:51:31 CST 2020
- */
- OfficialFeePrice selectByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table official_fee_price
- *
- * @mbg.generated Thu Sep 03 15:51:31 CST 2020
- */
- int updateByExampleSelective(@Param("record") OfficialFeePrice record, @Param("example") OfficialFeePriceExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table official_fee_price
- *
- * @mbg.generated Thu Sep 03 15:51:31 CST 2020
- */
- int updateByExample(@Param("record") OfficialFeePrice record, @Param("example") OfficialFeePriceExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table official_fee_price
- *
- * @mbg.generated Thu Sep 03 15:51:31 CST 2020
- */
- int updateByPrimaryKeySelective(OfficialFeePrice record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table official_fee_price
- *
- * @mbg.generated Thu Sep 03 15:51:31 CST 2020
- */
- int updateByPrimaryKey(OfficialFeePrice record);
- List<OfficialFeePrice> selectListByname(@Param("name")String name);
- }
|