2021与蓝度共同重构项目,服务端
chenjiantian
2022-01-17 a2f23bc97d133bcf7b950cd269eda577be4c0cac
1
2
3
4
5
6
7
8
9
10
11
12
 
package com.sandu.common.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
 
 
/**
 * @author chenjiantian
 */
public interface BaseService<T> extends IService<T> {
 
}