| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.BranchOfficeInfo;
- import com.goafanti.common.model.BranchOfficeInfoExample;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface BranchOfficeInfoMapper {
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table branch_office_info
- * @mbg.generated Tue Aug 22 09:20:20 CST 2017
- */
- long countByExample(BranchOfficeInfoExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table branch_office_info
- * @mbg.generated Tue Aug 22 09:20:20 CST 2017
- */
- int deleteByExample(BranchOfficeInfoExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table branch_office_info
- * @mbg.generated Tue Aug 22 09:20:20 CST 2017
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table branch_office_info
- * @mbg.generated Tue Aug 22 09:20:20 CST 2017
- */
- int insert(BranchOfficeInfo record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table branch_office_info
- * @mbg.generated Tue Aug 22 09:20:20 CST 2017
- */
- int insertSelective(BranchOfficeInfo record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table branch_office_info
- * @mbg.generated Tue Aug 22 09:20:20 CST 2017
- */
- List<BranchOfficeInfo> selectByExample(BranchOfficeInfoExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table branch_office_info
- * @mbg.generated Tue Aug 22 09:20:20 CST 2017
- */
- BranchOfficeInfo selectByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table branch_office_info
- * @mbg.generated Tue Aug 22 09:20:20 CST 2017
- */
- int updateByExampleSelective(@Param("record") BranchOfficeInfo record,
- @Param("example") BranchOfficeInfoExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table branch_office_info
- * @mbg.generated Tue Aug 22 09:20:20 CST 2017
- */
- int updateByExample(@Param("record") BranchOfficeInfo record, @Param("example") BranchOfficeInfoExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table branch_office_info
- * @mbg.generated Tue Aug 22 09:20:20 CST 2017
- */
- int updateByPrimaryKeySelective(BranchOfficeInfo record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table branch_office_info
- * @mbg.generated Tue Aug 22 09:20:20 CST 2017
- */
- int updateByPrimaryKey(BranchOfficeInfo record);
- }
|