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.
19 lines
511 B
Java
19 lines
511 B
Java
2 years ago
|
package com.glxp.api.dao.basic;
|
||
|
|
||
|
import com.glxp.api.entity.basic.BasicSkPrescribeItemDetailEntity;
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
||
|
/**
|
||
|
* @author Administrator
|
||
|
* @description 针对表【basic_sk_prescribe_item_detail(处方用药信息表)】的数据库操作Mapper
|
||
|
* @createDate 2023-11-07 10:13:54
|
||
|
* @Entity com.glxp.api.entity.basic.BasicSkPrescribeItemDetailEntity
|
||
|
*/
|
||
|
public interface BasicSkPrescribeItemDetailMapper extends BaseMapper<BasicSkPrescribeItemDetailEntity> {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|