package pwc.taxtech.atms.invoice; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import pwc.taxtech.atms.MyVatMapper; import pwc.taxtech.atms.vat.entity.HlOutputInterfaceLine; import pwc.taxtech.atms.vat.entity.HlOutputInterfaceLineExample; @Mapper public interface HlOutputInterfaceLineMapper extends MyVatMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table PWC_INVOICE.OUTPUT_INTERFACE_LINE * * @mbg.generated */ long countByExample(HlOutputInterfaceLineExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table PWC_INVOICE.OUTPUT_INTERFACE_LINE * * @mbg.generated */ int deleteByExample(HlOutputInterfaceLineExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table PWC_INVOICE.OUTPUT_INTERFACE_LINE * * @mbg.generated */ int insert(HlOutputInterfaceLine record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table PWC_INVOICE.OUTPUT_INTERFACE_LINE * * @mbg.generated */ int insertSelective(HlOutputInterfaceLine record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table PWC_INVOICE.OUTPUT_INTERFACE_LINE * * @mbg.generated */ List<HlOutputInterfaceLine> selectByExample(HlOutputInterfaceLineExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table PWC_INVOICE.OUTPUT_INTERFACE_LINE * * @mbg.generated */ int updateByExampleSelective(@Param("record") HlOutputInterfaceLine record, @Param("example") HlOutputInterfaceLineExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table PWC_INVOICE.OUTPUT_INTERFACE_LINE * * @mbg.generated */ int updateByExample(@Param("record") HlOutputInterfaceLine record, @Param("example") HlOutputInterfaceLineExample example); }