| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.TChangeTask;
- import com.goafanti.common.model.TChangeTaskExample;
- import com.goafanti.order.bo.TChangeTaskOut;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface TChangeTaskMapper {
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
- * @mbg.generated Mon Jan 13 09:27:33 CST 2020
- */
- long countByExample(TChangeTaskExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
- * @mbg.generated Mon Jan 13 09:27:33 CST 2020
- */
- int deleteByExample(TChangeTaskExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
- * @mbg.generated Mon Jan 13 09:27:33 CST 2020
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
- * @mbg.generated Mon Jan 13 09:27:33 CST 2020
- */
- int insert(TChangeTask record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
- * @mbg.generated Mon Jan 13 09:27:33 CST 2020
- */
- int insertSelective(TChangeTask record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
- * @mbg.generated Mon Jan 13 09:27:33 CST 2020
- */
- List<TChangeTask> selectByExample(TChangeTaskExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
- * @mbg.generated Mon Jan 13 09:27:33 CST 2020
- */
- TChangeTask selectByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
- * @mbg.generated Mon Jan 13 09:27:33 CST 2020
- */
- int updateByExampleSelective(@Param("record") TChangeTask record, @Param("example") TChangeTaskExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
- * @mbg.generated Mon Jan 13 09:27:33 CST 2020
- */
- int updateByExample(@Param("record") TChangeTask record, @Param("example") TChangeTaskExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
- * @mbg.generated Mon Jan 13 09:27:33 CST 2020
- */
- int updateByPrimaryKeySelective(TChangeTask record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
- * @mbg.generated Mon Jan 13 09:27:33 CST 2020
- */
- int updateByPrimaryKey(TChangeTask record);
- void insertSelectiveList(@Param("list")List<TChangeTask> list);
- List<TChangeTaskOut> selectByCid(Integer id);
- }
|