123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- package com.hssx.mapper;
- import com.hssx.entity.PrizeOpportunity;
- import com.hssx.entity.PrizeOpportunityExample;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface PrizeOpportunityMapper {
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
- * @mbg.generated Mon Sep 23 14:20:05 CST 2019
- */
- long countByExample(PrizeOpportunityExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
- * @mbg.generated Mon Sep 23 14:20:05 CST 2019
- */
- int deleteByExample(PrizeOpportunityExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
- * @mbg.generated Mon Sep 23 14:20:05 CST 2019
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
- * @mbg.generated Mon Sep 23 14:20:05 CST 2019
- */
- int insert(PrizeOpportunity record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
- * @mbg.generated Mon Sep 23 14:20:05 CST 2019
- */
- int insertSelective(PrizeOpportunity record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
- * @mbg.generated Mon Sep 23 14:20:05 CST 2019
- */
- List<PrizeOpportunity> selectByExample(PrizeOpportunityExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
- * @mbg.generated Mon Sep 23 14:20:05 CST 2019
- */
- PrizeOpportunity selectByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
- * @mbg.generated Mon Sep 23 14:20:05 CST 2019
- */
- int updateByExampleSelective(@Param("record") PrizeOpportunity record,
- @Param("example") PrizeOpportunityExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
- * @mbg.generated Mon Sep 23 14:20:05 CST 2019
- */
- int updateByExample(@Param("record") PrizeOpportunity record, @Param("example") PrizeOpportunityExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
- * @mbg.generated Mon Sep 23 14:20:05 CST 2019
- */
- int updateByPrimaryKeySelective(PrizeOpportunity record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
- * @mbg.generated Mon Sep 23 14:20:05 CST 2019
- */
- int updateByPrimaryKey(PrizeOpportunity record);
- int selectCountByToday(@Param("uid")String uid);
- }
|