zss
2023-08-28 13c8b105a7ddf7ac43fbbdea93946f389cd032e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.yuanchu.mom.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yuanchu.mom.pojo.ElementTechnology;
 
import java.util.List;
 
/**
 * 元件工艺中间表(ElementTechnology)表数据库访问层
 *
 * @author zss
 * @since 2023-08-28 10:49:07
 */
public interface ElementTechnologyMapper extends BaseMapper<ElementTechnology> {
 
    //删除中间表(根据工序id)
    void delElemaByTechsId(Integer id);
 
    //批量删除中间表(根据工序id)
    void delAllByTechId(String ids);
}