1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.gs.xiaomi.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.gs.xiaomi.entity.LogisticsPackage;
|
| /**
| * @author 28567
| * @description 针对表【LOGISTICS_PACKAGE】的数据库操作Service
| * @createDate 2025-04-10 14:17:13
| */
| public interface LogisticsPackageService extends IService<LogisticsPackage> {
|
| }
|
|