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.
16 lines
372 B
Java
16 lines
372 B
Java
package com.glxp.api.dao.basic;
|
|
|
|
import com.glxp.api.entity.basic.BasicSkPrescribeItemDetailEntity;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
/**
|
|
* 针对表【basic_sk_prescribe_item_detail(处方用药信息表)】的数据库操作Mapper
|
|
*/
|
|
public interface BasicSkPrescribeItemDetailMapper extends BaseMapper<BasicSkPrescribeItemDetailEntity> {
|
|
|
|
}
|
|
|
|
|
|
|
|
|