21 lines
736 B
Java
21 lines
736 B
Java
|
package com.supervision.edh.service.impl;
|
||
|
|
||
|
import com.supervision.edh.domain.EdhDrugDeliveryNoteApplyInfo;
|
||
|
import com.supervision.edh.mapper.EdhDrugDeliveryNoteApplyInfoMapper;
|
||
|
import com.supervision.edh.service.IEdhDrugDeliveryNoteApplyInfoService;
|
||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
import org.springframework.stereotype.Service;
|
||
|
|
||
|
/**
|
||
|
* <p>
|
||
|
* 药监企业数据上报-药品收货单信息表 服务实现类
|
||
|
* </p>
|
||
|
*
|
||
|
* @author Jason
|
||
|
* @since 2025-06-21
|
||
|
*/
|
||
|
@Service("drugDeliveryNoteApplyInfoService")
|
||
|
public class EdhDrugDeliveryNoteApplyInfoServiceImpl extends ServiceImpl<EdhDrugDeliveryNoteApplyInfoMapper, EdhDrugDeliveryNoteApplyInfo> implements IEdhDrugDeliveryNoteApplyInfoService {
|
||
|
|
||
|
}
|