package pwc.taxtech.atms.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.MyMapper; import pwc.taxtech.atms.dpo.AnalyticsModelDetail; import pwc.taxtech.atms.dpo.FinancialStatementDetail; import pwc.taxtech.atms.dpo.TaxReturnDetail; import pwc.taxtech.atms.entity.KeyValueReference; import pwc.taxtech.atms.entity.KeyValueReferenceExample; import java.util.List; @Mapper public interface KeyValueReferenceMapper extends MyMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table key_value_reference * * @mbg.generated */ long countByExample(KeyValueReferenceExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table key_value_reference * * @mbg.generated */ int deleteByExample(KeyValueReferenceExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table key_value_reference * * @mbg.generated */ int deleteByPrimaryKey(String id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table key_value_reference * * @mbg.generated */ int insert(KeyValueReference record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table key_value_reference * * @mbg.generated */ int insertSelective(KeyValueReference record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table key_value_reference * * @mbg.generated */ List<KeyValueReference> selectByExampleWithRowbounds(KeyValueReferenceExample example, RowBounds rowBounds); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table key_value_reference * * @mbg.generated */ List<KeyValueReference> selectByExample(KeyValueReferenceExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table key_value_reference * * @mbg.generated */ KeyValueReference selectByPrimaryKey(String id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table key_value_reference * * @mbg.generated */ int updateByExampleSelective(@Param("record") KeyValueReference record, @Param("example") KeyValueReferenceExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table key_value_reference * * @mbg.generated */ int updateByExample(@Param("record") KeyValueReference record, @Param("example") KeyValueReferenceExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table key_value_reference * * @mbg.generated */ int updateByPrimaryKeySelective(KeyValueReference record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table key_value_reference * * @mbg.generated */ int updateByPrimaryKey(KeyValueReference record); int deleteKeyValueReferenceByCellTemplate(@Param("templateDbID") Long templateDbId); List<FinancialStatementDetail> getFinancialStatementDetails(@Param("configurationID") String configurationId); List<TaxReturnDetail> getTaxReturnDetails(@Param("configurationID") String configurationId); List<AnalyticsModelDetail> getAnalyticsModelDetails(@Param("configurationID") String configurationId); }