You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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);
|
|
|
|
}
|
|
|