| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.BusinessProject;
- import com.goafanti.common.model.BusinessProjectExample;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface BusinessProjectMapper {
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
- * @mbg.generated Mon Dec 04 15:29:25 CST 2017
- */
- long countByExample(BusinessProjectExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
- * @mbg.generated Mon Dec 04 15:29:25 CST 2017
- */
- int deleteByExample(BusinessProjectExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
- * @mbg.generated Mon Dec 04 15:29:25 CST 2017
- */
- int deleteByPrimaryKey(String id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
- * @mbg.generated Mon Dec 04 15:29:25 CST 2017
- */
- int insert(BusinessProject record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
- * @mbg.generated Mon Dec 04 15:29:25 CST 2017
- */
- int insertSelective(BusinessProject record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
- * @mbg.generated Mon Dec 04 15:29:25 CST 2017
- */
- List<BusinessProject> selectByExample(BusinessProjectExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
- * @mbg.generated Mon Dec 04 15:29:25 CST 2017
- */
- BusinessProject selectByPrimaryKey(String id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
- * @mbg.generated Mon Dec 04 15:29:25 CST 2017
- */
- int updateByExampleSelective(@Param("record") BusinessProject record,
- @Param("example") BusinessProjectExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
- * @mbg.generated Mon Dec 04 15:29:25 CST 2017
- */
- int updateByExample(@Param("record") BusinessProject record, @Param("example") BusinessProjectExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
- * @mbg.generated Mon Dec 04 15:29:25 CST 2017
- */
- int updateByPrimaryKeySelective(BusinessProject record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
- * @mbg.generated Mon Dec 04 15:29:25 CST 2017
- */
- int updateByPrimaryKey(BusinessProject record);
- }
|