package pwc.taxtech.atms.vat.dao; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.session.RowBounds; import pwc.taxtech.atms.MyVatMapper; import pwc.taxtech.atms.vat.entity.AssetGroupResult; import pwc.taxtech.atms.vat.entity.AssetGroupResultExample; // todo 无此表 @Mapper public interface AssetGroupResultMapper extends MyVatMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.ASSET_GROUP_RESULT * * @mbg.generated */ long countByExample(AssetGroupResultExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.ASSET_GROUP_RESULT * * @mbg.generated */ int deleteByExample(AssetGroupResultExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.ASSET_GROUP_RESULT * * @mbg.generated */ int deleteByPrimaryKey(String id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.ASSET_GROUP_RESULT * * @mbg.generated */ int insert(AssetGroupResult record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.ASSET_GROUP_RESULT * * @mbg.generated */ int insertSelective(AssetGroupResult record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.ASSET_GROUP_RESULT * * @mbg.generated */ List<AssetGroupResult> selectByExampleWithRowbounds(AssetGroupResultExample example, RowBounds rowBounds); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.ASSET_GROUP_RESULT * * @mbg.generated */ List<AssetGroupResult> selectByExample(AssetGroupResultExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.ASSET_GROUP_RESULT * * @mbg.generated */ AssetGroupResult selectByPrimaryKey(String id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.ASSET_GROUP_RESULT * * @mbg.generated */ int updateByExampleSelective(@Param("record") AssetGroupResult record, @Param("example") AssetGroupResultExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.ASSET_GROUP_RESULT * * @mbg.generated */ int updateByExample(@Param("record") AssetGroupResult record, @Param("example") AssetGroupResultExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.ASSET_GROUP_RESULT * * @mbg.generated */ int updateByPrimaryKeySelective(AssetGroupResult record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.ASSET_GROUP_RESULT * * @mbg.generated */ int updateByPrimaryKey(AssetGroupResult record); }