Jay
2025-04-17 3180878150f6e22b30394f745008d81cb80af12d
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
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.MmPredictInfluenceFactorConfigVO;
import com.iailab.module.model.mcs.pre.vo.MmPredictInfluenceFactorPageReqVO;
import com.iailab.module.model.mcs.pre.vo.MmPredictInfluenceFactorResultPageReqVO;
import com.iailab.module.model.mcs.pre.vo.MmPredictInfluenceFactorResultVO;
 
/**
 * @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);
}