| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- package com.goafanti.common.dao;
- import com.goafanti.business.bo.JtBusinessProjectResult;
- 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 Wed Aug 01 10:34:40 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 Wed Aug 01 10:34:40 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 Wed Aug 01 10:34:40 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 Wed Aug 01 10:34:40 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 Wed Aug 01 10:34:40 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 Wed Aug 01 10:34:40 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 Wed Aug 01 10:34:40 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 Wed Aug 01 10:34:40 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 Wed Aug 01 10:34:40 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 Wed Aug 01 10:34:40 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 Wed Aug 01 10:34:40 CST 2018
- */
- int updateByPrimaryKey(JtBusinessProject record);
- List<JtBusinessProject> getBusinessProjectByCategoryId(@Param("id")String id,@Param("size")Integer size,@Param("isHot")Integer isHot);
-
- List<JtBusinessProject> findProjectOrderByNumber();
-
- int deleteByIdAndUid(String id,String uid);
-
- JtBusinessProjectResult selectByPrimaryKeyWithModule(String id);
-
-
-
- }
|