提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.mcs.sche.service; |
潘 |
2 |
|
|
3 |
import com.iailab.framework.common.page.PageData; |
|
4 |
import com.iailab.framework.common.service.BaseService; |
|
5 |
import com.iailab.module.model.mcs.sche.entity.StScheduleModelUserParamEntity; |
|
6 |
import com.iailab.module.model.mcs.sche.vo.ScheduleModelUserParamVo; |
|
7 |
|
|
8 |
import java.util.List; |
|
9 |
import java.util.Map; |
|
10 |
|
|
11 |
/** |
|
12 |
* @author PanZhibao |
|
13 |
* @date 2021年07月22日 10:37 |
|
14 |
*/ |
|
15 |
public interface StScheduleModelUserParamService extends BaseService<StScheduleModelUserParamEntity> { |
|
16 |
|
|
17 |
List<StScheduleModelUserParamEntity> getByModelid(String modelid); |
|
18 |
|
|
19 |
PageData<ScheduleModelUserParamVo> page(Map<String, Object> params); |
|
20 |
} |
|
21 |
|