15 lines
361 B
Java
15 lines
361 B
Java
|
|
package com.joju.datamanager.service;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
|
import com.joju.datamanager.model.medicalprescription.MedicalPrescription;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @description: 医嘱开单业务接口
|
||
|
|
* @author: Mr.zs
|
||
|
|
* @create: 2024-04-02 19:12
|
||
|
|
**/
|
||
|
|
public interface MedicalPrescriptionService extends IService<MedicalPrescription> {
|
||
|
|
|
||
|
|
|
||
|
|
}
|