1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.ltkj.hosp.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ltkj.hosp.domain.TjProConsumables;
|
| import java.util.List;
|
| /**
| * @Author: 西安路泰科技有限公司/赵佳豪
| * @Date: 2022/12/30 8:53
| */
| public interface TjProConsumablesService extends IService<TjProConsumables> {
| List<TjProConsumables> list(Long proId);
| }
|
|