1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package org.jeecg.modules.arj.service;
|
| import org.jeecg.modules.arj.entity.FanbianZhiliangRd2;
| import com.baomidou.mybatisplus.extension.service.IService;
| import java.util.List;
|
|
| /**
| * <p>
| * 翻边质量记封口 前端控制器
| * </p>
| *
| * @author hyy
| * @since 2022-11-29
| */
| public interface FanbianZhiliangRd2Service extends IService<FanbianZhiliangRd2>{
| List<FanbianZhiliangRd2> queryByHeadId(String headId);
| }
|
|