| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.ThirdPartyCompany;
- import com.goafanti.common.model.ThirdPartyCompanyExample;
- import com.goafanti.organization.bo.OutThirdPartyCompany;
- import com.goafanti.organization.bo.ProjectTypePuls;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface ThirdPartyCompanyMapper {
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table third_party_company
- * @mbg.generated Thu Oct 22 16:26:31 CST 2020
- */
- long countByExample(ThirdPartyCompanyExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table third_party_company
- * @mbg.generated Thu Oct 22 16:26:31 CST 2020
- */
- int deleteByExample(ThirdPartyCompanyExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table third_party_company
- * @mbg.generated Thu Oct 22 16:26:31 CST 2020
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table third_party_company
- * @mbg.generated Thu Oct 22 16:26:31 CST 2020
- */
- int insert(ThirdPartyCompany record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table third_party_company
- * @mbg.generated Thu Oct 22 16:26:31 CST 2020
- */
- int insertSelective(ThirdPartyCompany record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table third_party_company
- * @mbg.generated Thu Oct 22 16:26:31 CST 2020
- */
- List<ThirdPartyCompany> selectByExample(ThirdPartyCompanyExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table third_party_company
- * @mbg.generated Thu Oct 22 16:26:31 CST 2020
- */
- ThirdPartyCompany selectByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table third_party_company
- * @mbg.generated Thu Oct 22 16:26:31 CST 2020
- */
- int updateByExampleSelective(@Param("record") ThirdPartyCompany record,
- @Param("example") ThirdPartyCompanyExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table third_party_company
- * @mbg.generated Thu Oct 22 16:26:31 CST 2020
- */
- int updateByExample(@Param("record") ThirdPartyCompany record, @Param("example") ThirdPartyCompanyExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table third_party_company
- * @mbg.generated Thu Oct 22 16:26:31 CST 2020
- */
- int updateByPrimaryKeySelective(ThirdPartyCompany record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table third_party_company
- * @mbg.generated Thu Oct 22 16:26:31 CST 2020
- */
- int updateByPrimaryKey(ThirdPartyCompany record);
- List<OutThirdPartyCompany> selectByTid(Integer tid);
- ProjectTypePuls selectByTidGetDtails(Integer tid);
- void deleteByTid(Integer id);
- }
|