| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.JtBusinessProject;
- import com.goafanti.common.model.JtBusinessProjectExample;
- import com.goafanti.core.mybatis.page.Pagination;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface JtBusinessProjectMapper {
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table jt_business_project
- * @mbg.generated Fri Jul 06 18:31:16 CST 2018
- */
- long countByExample(JtBusinessProjectExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table jt_business_project
- * @mbg.generated Fri Jul 06 18:31:16 CST 2018
- */
- int deleteByExample(JtBusinessProjectExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table jt_business_project
- * @mbg.generated Fri Jul 06 18:31:16 CST 2018
- */
- int deleteByPrimaryKey(String id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table jt_business_project
- * @mbg.generated Fri Jul 06 18:31:16 CST 2018
- */
- int insert(JtBusinessProject record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table jt_business_project
- * @mbg.generated Fri Jul 06 18:31:16 CST 2018
- */
- int insertSelective(JtBusinessProject record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table jt_business_project
- * @mbg.generated Fri Jul 06 18:31:16 CST 2018
- */
- List<JtBusinessProject> selectByExample(JtBusinessProjectExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table jt_business_project
- * @mbg.generated Fri Jul 06 18:31:16 CST 2018
- */
- JtBusinessProject selectByPrimaryKey(String id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table jt_business_project
- * @mbg.generated Fri Jul 06 18:31:16 CST 2018
- */
- int updateByExampleSelective(@Param("record") JtBusinessProject record,
- @Param("example") JtBusinessProjectExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table jt_business_project
- * @mbg.generated Fri Jul 06 18:31:16 CST 2018
- */
- int updateByExample(@Param("record") JtBusinessProject record, @Param("example") JtBusinessProjectExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table jt_business_project
- * @mbg.generated Fri Jul 06 18:31:16 CST 2018
- */
- int updateByPrimaryKeySelective(JtBusinessProject record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table jt_business_project
- * @mbg.generated Fri Jul 06 18:31:16 CST 2018
- */
- int updateByPrimaryKey(JtBusinessProject record);
- List<JtBusinessProject> getBusinessProjectByCategoryId(@Param("id")String id,@Param("size")Integer size,@Param("isHot")Integer isHot);
-
- List<JtBusinessProject> findProjectOrderByNumber();
-
-
-
- }
|