zjh
2024-06-25 d6caa33b757fcb2f32b693b5db3c0398e96194a3
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);
}