23 lines
575 B
Java
23 lines
575 B
Java
|
|
package com.gunshi.project.xyt.mapper;
|
||
|
|
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import com.gunshi.project.xyt.model.StZvarlB;
|
||
|
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
@Mapper
|
||
|
|
public interface StZvarlBMapper extends BaseMapper<StZvarlB> {
|
||
|
|
int updateBatch(List<StZvarlB> list);
|
||
|
|
|
||
|
|
int updateBatchSelective(List<StZvarlB> list);
|
||
|
|
|
||
|
|
int batchInsert(@Param("list") List<StZvarlB> list);
|
||
|
|
|
||
|
|
int insertOrUpdate(StZvarlB record);
|
||
|
|
|
||
|
|
int insertOrUpdateSelective(StZvarlB record);
|
||
|
|
|
||
|
|
}
|