15 lines
319 B
Java
15 lines
319 B
Java
package com.nd.gateway.service;
|
|
|
|
import com.nd.gateway.entity.gatewayCommon;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
/**
|
|
* @Description: 基本信息表
|
|
* @Author: jeecg-boot
|
|
* @Date: 2022-03-24
|
|
* @Version: V1.0
|
|
*/
|
|
public interface IgatewayCommonService extends IService<gatewayCommon> {
|
|
|
|
}
|