提交 | 用户 | 时间
|
b368e6
|
1 |
package com.iailab.module.model.mcs.pre.service; |
潘 |
2 |
|
|
3 |
import com.iailab.framework.common.service.BaseService; |
|
4 |
import com.iailab.module.model.mcs.pre.entity.MmItemResultJsonEntity; |
|
5 |
|
|
6 |
import java.util.Date; |
|
7 |
import java.util.List; |
|
8 |
|
|
9 |
/** |
|
10 |
* @author PanZhibao |
|
11 |
* @Description |
|
12 |
* @createTime 2024年11月14日 |
|
13 |
*/ |
|
14 |
public interface MmItemResultJsonService extends BaseService<MmItemResultJsonEntity> { |
|
15 |
|
977edc
|
16 |
List<Object[]> getData(String outputId, Date predictTime, String timeFormat); |
b368e6
|
17 |
} |