zjh
2025-03-10 ac120ff7d3239da85c05d0ec7f8d8e416d557432
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);
}