1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.iailab.module.model.mcs.pre.service;
 
import com.iailab.framework.common.pojo.PageResult;
import com.iailab.framework.common.service.BaseService;
import com.iailab.module.model.api.mcs.dto.MmPredictInfluenceFactorHandleReqVO;
import com.iailab.module.model.mcs.pre.entity.MmPredictInfluenceFactorConfigEntity;
import com.iailab.module.model.mcs.pre.vo.*;
 
import java.util.List;
 
/**
 * @description:
 * @author: dzd
 * @date: 2025/4/8 13:44
 **/
public interface MmPredictInfluenceFactorService extends BaseService<MmPredictInfluenceFactorConfigEntity> {
 
    PageResult<MmPredictInfluenceFactorConfigVO> page(MmPredictInfluenceFactorPageReqVO params);
 
    MmPredictInfluenceFactorConfigVO getInfo(String id);
 
    void create(MmPredictInfluenceFactorConfigVO vo);
 
    void update(MmPredictInfluenceFactorConfigVO vo);
 
    void delete(String id);
 
    void influenceFactorHandle(MmPredictInfluenceFactorHandleReqVO reqVO);
 
    List<MmPredictInfluenceFactorVO> getListByOutId(String outId);
}