supervision-edh/src/main/java/com/supervision/edh/service/impl/EdhDrugDeliveryNoteApplyInf...

21 lines
736 B
Java
Raw Normal View History

2025-06-25 10:11:08 +08:00
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 {
}