All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hxl.miniapi.orm.CrudRepository.kt Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.hxl.miniapi.orm

interface CrudRepository {

    /**
     * @description: 查询单条数据
     * @date: 2022/10/6 上午4:35
     */

    fun  listOne(querySql: String, ofClass: Class): T?


    /**
     * @description: 查询map
     * @date: 2022/10/6 上午4:35
     */

    fun listMap(querySql: String): List>


    /**
     * @description: list数据
     * @date: 2022/10/6 上午4:36
     */

    fun  list(querySql: String, ofClass: Class): List


    /**
     * @description: 更新数据
     * @date: 2022/10/6 上午4:36
     */

    fun update(querySql: String): Int

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy