12 lines
384 B
Java
12 lines
384 B
Java
|
|
package com.gunshi.project.xyt.mapper;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import com.gunshi.project.xyt.model.StMoncrB;
|
||
|
|
import java.util.List;
|
||
|
|
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);
|
||
|
|
}
|