ludc
2023-12-06 27cf58be1f4a86aafadcee15b21ab245b1ca866b
1
2
3
4
5
6
7
8
9
10
11
package com.vci.ubcs.code.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.vci.ubcs.code.entity.DockingData;
 
/***
 * @author xj
 * @date 2023-07-10
 */
public interface IDockingDataService extends IService<DockingData> {
}