AdaKing88
2023-08-23 ae35159387a55199e8ab150ebb97d89d68a235bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.jeecg.modules.arj.service;
 
import org.jeecg.modules.arj.entity.FanbianCl;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
 
 
/**
 * <p>
 * 翻边测量 前端控制器
 * </p>
 *
 * @author hyy
 * @since 2022-11-27
 */
public interface FanbianClService extends IService<FanbianCl>{
    List<FanbianCl> queryByHeadId(String headId);
}