package pwc.taxtech.atms.vat.dao; 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.GlBalance; import pwc.taxtech.atms.vat.entity.GlBalanceExample; @Mapper public interface GlBalanceMapper extends MyVatMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN_LONGI.GL_BALANCE * * @mbg.generated */ long countByExample(GlBalanceExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN_LONGI.GL_BALANCE * * @mbg.generated */ int deleteByExample(GlBalanceExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN_LONGI.GL_BALANCE * * @mbg.generated */ int deleteByPrimaryKey(Long id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN_LONGI.GL_BALANCE * * @mbg.generated */ int insert(GlBalance record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN_LONGI.GL_BALANCE * * @mbg.generated */ int insertSelective(GlBalance record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN_LONGI.GL_BALANCE * * @mbg.generated */ List<GlBalance> selectByExample(GlBalanceExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN_LONGI.GL_BALANCE * * @mbg.generated */ GlBalance selectByPrimaryKey(Long id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN_LONGI.GL_BALANCE * * @mbg.generated */ int updateByExampleSelective(@Param("record") GlBalance record, @Param("example") GlBalanceExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN_LONGI.GL_BALANCE * * @mbg.generated */ int updateByExample(@Param("record") GlBalance record, @Param("example") GlBalanceExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN_LONGI.GL_BALANCE * * @mbg.generated */ int updateByPrimaryKeySelective(GlBalance record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN_LONGI.GL_BALANCE * * @mbg.generated */ int updateByPrimaryKey(GlBalance record); }