提交 | 用户 | 时间
|
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; |
1c9291
|
8 |
import java.util.Map; |
b368e6
|
9 |
|
潘 |
10 |
/** |
|
11 |
* @author PanZhibao |
|
12 |
* @Description |
|
13 |
* @createTime 2024年11月14日 |
|
14 |
*/ |
|
15 |
public interface MmItemResultJsonService extends BaseService<MmItemResultJsonEntity> { |
|
16 |
|
977edc
|
17 |
List<Object[]> getData(String outputId, Date predictTime, String timeFormat); |
c4b37d
|
18 |
|
ca56f2
|
19 |
List<Object[]> getData(String outputId, Date predictTime, String timeFormat, int scale); |
潘 |
20 |
|
807efb
|
21 |
void insert(List<MmItemResultJsonEntity> resultJsonList); |
1c9291
|
22 |
|
L |
23 |
void cleanResultJson(Map<String, Date> tMap); |
b368e6
|
24 |
} |