zjh
2023-12-06 41f99a843fb2c0424426e006f29c1e78192eae01
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);
}