| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.CustomerOrganizationInfo;
- import com.goafanti.common.model.CustomerOrganizationInfoExample;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface CustomerOrganizationInfoMapper {
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table customer_organization_info
- * @mbg.generated Wed Oct 11 15:42:57 CST 2017
- */
- long countByExample(CustomerOrganizationInfoExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table customer_organization_info
- * @mbg.generated Wed Oct 11 15:42:57 CST 2017
- */
- int deleteByExample(CustomerOrganizationInfoExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table customer_organization_info
- * @mbg.generated Wed Oct 11 15:42:57 CST 2017
- */
- int deleteCustomerOrganizationByCid(String cid);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table customer_organization_info
- * @mbg.generated Wed Oct 11 15:42:57 CST 2017
- */
- int insert(CustomerOrganizationInfo record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table customer_organization_info
- * @mbg.generated Wed Oct 11 15:42:57 CST 2017
- */
- int insertSelective(CustomerOrganizationInfo record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table customer_organization_info
- * @mbg.generated Wed Oct 11 15:42:57 CST 2017
- */
- List<CustomerOrganizationInfo> selectByExample(CustomerOrganizationInfoExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table customer_organization_info
- * @mbg.generated Wed Oct 11 15:42:57 CST 2017
- */
- CustomerOrganizationInfo selectByPrimaryKey(String id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table customer_organization_info
- * @mbg.generated Wed Oct 11 15:42:57 CST 2017
- */
- int updateByExampleSelective(@Param("record") CustomerOrganizationInfo record,
- @Param("example") CustomerOrganizationInfoExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table customer_organization_info
- * @mbg.generated Wed Oct 11 15:42:57 CST 2017
- */
- int updateByExample(@Param("record") CustomerOrganizationInfo record,
- @Param("example") CustomerOrganizationInfoExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table customer_organization_info
- * @mbg.generated Wed Oct 11 15:42:57 CST 2017
- */
- int updateByPrimaryKeySelective(CustomerOrganizationInfo record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table customer_organization_info
- * @mbg.generated Wed Oct 11 15:42:57 CST 2017
- */
- int updateByPrimaryKey(CustomerOrganizationInfo record);
- int insertCustomerOrganization(CustomerOrganizationInfo cui);
- }
|