package cn.flightfeather.supervision.domain.ds1.mapper
|
|
import cn.flightfeather.supervision.domain.ds1.entity.DataProductProDetail
|
import tk.mybatis.mapper.common.Mapper
|
|
interface DataProductProDetailMapper : Mapper<DataProductProDetail> {
|
fun insertBatch(list: List<DataProductProDetail>)
|
}
|