You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
450 B
Java
15 lines
450 B
Java
2 years ago
|
package com.glxp.api.service;
|
||
|
|
||
|
import com.glxp.api.entity.basic.BasicSkPrescribeItemEntity;
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 针对表【basic_sk_prescribe_item(处方用药信息表)】的数据库操作Service
|
||
|
*/
|
||
|
public interface BasicSkPrescribeItemService extends IService<BasicSkPrescribeItemEntity> {
|
||
|
|
||
|
List<BasicSkPrescribeItemEntity> listByPrescribeCode(String prescribeCode);
|
||
|
}
|