2 changed files with 16 additions and 1 deletions
@ -1,11 +1,14 @@ |
|||||||
package com.logpm.report.service; |
package com.logpm.report.service; |
||||||
|
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
|
||||||
/** |
/** |
||||||
* @author zhaoqiaobo |
* @author wzy |
||||||
* @create 2024-03-06 15:51 |
* @create 2024-03-06 15:51 |
||||||
*/ |
*/ |
||||||
public interface InLibraryDeliverService { |
public interface InLibraryDeliverService { |
||||||
|
|
||||||
|
IPage<InLibraryDeliverService> DistributionParcelListPage( ) ; |
||||||
|
|
||||||
} |
} |
||||||
|
@ -0,0 +1,12 @@ |
|||||||
|
package com.logpm.report.service.impl; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import com.logpm.report.service.InLibraryDeliverService; |
||||||
|
|
||||||
|
public class InLibraryDeliverServiceImpl implements InLibraryDeliverService { |
||||||
|
|
||||||
|
@Override |
||||||
|
public IPage<InLibraryDeliverService> DistributionParcelListPage() { |
||||||
|
return null; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue