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