| | |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; |
| | | import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
| | | import com.github.pagehelper.PageHelper; |
| | | import com.github.pagehelper.PageInfo; |
| | | import com.whyc.dto.Response; |
| | |
| | | public void insertBatch(List<Component> componentList) { |
| | | mapper.insertBatchSomeColumn(componentList); |
| | | } |
| | | |
| | | /**mybatis-plus逻辑删除*/ |
| | | public void deleteBatch(List<Integer> componentIdList) { |
| | | mapper.deleteBatchIds(componentIdList); |
| | | } |
| | | } |