16 lines
377 B
Java
16 lines
377 B
Java
|
|
package com.klp.mapper;
|
||
|
|
|
||
|
|
import com.klp.domain.WmsDeliveryWaybill;
|
||
|
|
import com.klp.domain.vo.WmsDeliveryWaybillVo;
|
||
|
|
import com.klp.common.core.mapper.BaseMapperPlus;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 发货单主Mapper接口
|
||
|
|
*
|
||
|
|
* @author klp
|
||
|
|
* @date 2025-11-25
|
||
|
|
*/
|
||
|
|
public interface WmsDeliveryWaybillMapper extends BaseMapperPlus<WmsDeliveryWaybillMapper, WmsDeliveryWaybill, WmsDeliveryWaybillVo> {
|
||
|
|
|
||
|
|
}
|