提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.mcs.pre.service.impl; |
潘 |
2 |
|
48c57b
|
3 |
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
5c6007
|
4 |
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
7fd198
|
5 |
import com.iailab.framework.common.pojo.PageResult; |
潘 |
6 |
import com.iailab.framework.common.service.impl.BaseServiceImpl; |
5c6007
|
7 |
import com.iailab.module.model.mcs.pre.dao.MmModelParamDao; |
7fd198
|
8 |
import com.iailab.module.model.mcs.pre.dao.MmModelResultstrDao; |
潘 |
9 |
import com.iailab.module.model.mcs.pre.entity.MmModelResultstrEntity; |
|
10 |
import com.iailab.module.model.mcs.pre.service.MmModelResultstrService; |
|
11 |
import com.iailab.module.model.mcs.pre.vo.MmModelResultstrPageReqVO; |
5c6007
|
12 |
import org.springframework.beans.factory.annotation.Autowired; |
7fd198
|
13 |
import org.springframework.stereotype.Service; |
5c6007
|
14 |
|
L |
15 |
import java.util.Collections; |
|
16 |
import java.util.List; |
|
17 |
import java.util.Map; |
7fd198
|
18 |
|
潘 |
19 |
/** |
|
20 |
* @author PanZhibao |
|
21 |
* @date 2021年05月07日 16:43 |
|
22 |
*/ |
5c6007
|
23 |
@Service |
L |
24 |
public class MmModelResultstrServiceImpl extends ServiceImpl<MmModelResultstrDao, MmModelResultstrEntity> |
7fd198
|
25 |
implements MmModelResultstrService { |
潘 |
26 |
|
5c6007
|
27 |
@Autowired |
L |
28 |
private MmModelResultstrDao mmModelResultstrDao; |
7fd198
|
29 |
@Override |
潘 |
30 |
public PageResult<MmModelResultstrEntity> page(MmModelResultstrPageReqVO reqVO) { |
5c6007
|
31 |
return mmModelResultstrDao.selectPage(reqVO); |
7fd198
|
32 |
} |
潘 |
33 |
|
|
34 |
@Override |
|
35 |
public MmModelResultstrEntity getInfo(String id) { |
5c6007
|
36 |
return mmModelResultstrDao.selectById(id); |
7fd198
|
37 |
|
潘 |
38 |
} |
5c6007
|
39 |
|
L |
40 |
@Override |
|
41 |
public List<MmModelResultstrEntity> list(Map<String, Object> params) { |
48c57b
|
42 |
return mmModelResultstrDao.selectList(new QueryWrapper<>()); |
5c6007
|
43 |
} |
7fd198
|
44 |
} |