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