15 lines
335 B
Java
15 lines
335 B
Java
package com.nd.gateway.service;
|
|
|
|
import com.nd.gateway.entity.GatewayLinks;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
/**
|
|
* @Description: 门户-友情链接,快速导航
|
|
* @Author: jeecg-boot
|
|
* @Date: 2022-03-26
|
|
* @Version: V1.0
|
|
*/
|
|
public interface IGatewayLinksService extends IService<GatewayLinks> {
|
|
|
|
}
|