2024-01-24 14:27:40 +08:00
|
|
|
package com.gunshi.project.xyt.mapper;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
2024-01-26 14:58:02 +08:00
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
|
|
import com.gunshi.project.xyt.entity.basedata.GeneralSearch;
|
2024-01-24 14:27:40 +08:00
|
|
|
import com.gunshi.project.xyt.model.StMoncrB;
|
2024-01-26 15:00:01 +08:00
|
|
|
|
2024-01-24 14:27:40 +08:00
|
|
|
import java.util.List;
|
2024-01-26 15:00:01 +08:00
|
|
|
|
2024-01-24 14:27:40 +08:00
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
|
|
@Mapper
|
|
|
|
|
public interface StMoncrBMapper extends BaseMapper<StMoncrB> {
|
|
|
|
|
int batchInsert(@Param("list") List<StMoncrB> list);
|
2024-01-26 14:58:02 +08:00
|
|
|
|
|
|
|
|
Page<StMoncrB> queryBySearch(Page<StMoncrB> page, @Param("obj") GeneralSearch search);
|
2024-01-24 14:27:40 +08:00
|
|
|
}
|