| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.ContractDetail;
- import com.goafanti.common.model.ContractDetailExample;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface ContractDetailMapper {
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
- * @mbg.generated Thu Jan 25 20:08:49 CST 2018
- */
- long countByExample(ContractDetailExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
- * @mbg.generated Thu Jan 25 20:08:49 CST 2018
- */
- int deleteByExample(ContractDetailExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
- * @mbg.generated Thu Jan 25 20:08:49 CST 2018
- */
- int deleteByPrimaryKey(String id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
- * @mbg.generated Thu Jan 25 20:08:49 CST 2018
- */
- int insert(ContractDetail record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
- * @mbg.generated Thu Jan 25 20:08:49 CST 2018
- */
- int insertSelective(ContractDetail record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
- * @mbg.generated Thu Jan 25 20:08:49 CST 2018
- */
- List<ContractDetail> selectByExampleWithBLOBs(ContractDetailExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
- * @mbg.generated Thu Jan 25 20:08:49 CST 2018
- */
- List<ContractDetail> selectByExample(ContractDetailExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
- * @mbg.generated Thu Jan 25 20:08:49 CST 2018
- */
- ContractDetail selectByPrimaryKey(String id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
- * @mbg.generated Thu Jan 25 20:08:49 CST 2018
- */
- int updateByExampleSelective(@Param("record") ContractDetail record,
- @Param("example") ContractDetailExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
- * @mbg.generated Thu Jan 25 20:08:49 CST 2018
- */
- int updateByExampleWithBLOBs(@Param("record") ContractDetail record,
- @Param("example") ContractDetailExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
- * @mbg.generated Thu Jan 25 20:08:49 CST 2018
- */
- int updateByExample(@Param("record") ContractDetail record, @Param("example") ContractDetailExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
- * @mbg.generated Thu Jan 25 20:08:49 CST 2018
- */
- int updateByPrimaryKeySelective(ContractDetail record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
- * @mbg.generated Thu Jan 25 20:08:49 CST 2018
- */
- int updateByPrimaryKeyWithBLOBs(ContractDetail record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
- * @mbg.generated Thu Jan 25 20:08:49 CST 2018
- */
- int updateByPrimaryKey(ContractDetail record);
- }
|