17 lines
291 B
17 lines
291 B
2 years ago
|
package com.psdc.service;
|
||
|
|
||
|
import com.psdc.entity.vo.ModelVo;
|
||
|
|
||
|
/**
|
||
|
* @Author:Stone
|
||
|
* @Project:psdc
|
||
|
* @Filename:IPsdcModelService
|
||
|
* @Date:2023/6/2 10:27
|
||
|
* @Version 1.0
|
||
|
*/
|
||
|
public interface IPsdcModelService {
|
||
|
|
||
|
ModelVo queryControlModel(String modelName, String sceneKey);
|
||
|
|
||
|
}
|