package com.gs.xky.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.gs.xky.entity.DeliveryNoticeDetail;
|
|
/**
|
* @author 28567
|
* @description 针对表【DELIVERY_NOTICE_DETAIL(送货通知单据明细表)】的数据库操作Mapper
|
* @createDate 2025-02-11 22:30:01
|
* @Entity com.gs.xky.entity.DeliveryNoticeDetail
|
*/
|
public interface DeliveryNoticeDetailMapper extends BaseMapper<DeliveryNoticeDetail> {
|
|
}
|