|
|
@@ -3,7 +3,9 @@ package com.mokamrp.privates.service.pangu.impl;
|
|
|
import com.baomidou.mybatisplus.core.conditions.Wrapper;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
+import com.mokamrp.privates.entity.GetEmployeeTagHandle;
|
|
|
import com.mokamrp.privates.entity.PostBasePageHandle;
|
|
|
+import com.mokamrp.privates.entity.pangu.GetPromoteQrcodePoolHandle;
|
|
|
import com.mokamrp.privates.entity.pangu.SetPromoteQrcodeHandle;
|
|
|
import com.mokamrp.privates.mapper.pangu.PromoteCodeMapper;
|
|
|
import com.mokamrp.privates.mapper.pangu.pojo.CustserviceVo;
|
|
|
@@ -44,7 +46,7 @@ public class PromoteQrcodePoolServiceImpl extends ServiceImpl<PromoteQrcodePoolM
|
|
|
* @param pageHandle
|
|
|
* @return
|
|
|
*/
|
|
|
- public Object getlist(PostBasePageHandle pageHandle){
|
|
|
+ public Object getlist(GetPromoteQrcodePoolHandle pageHandle){
|
|
|
Page<PromoteQrcodePoolVo> page = new Page<PromoteQrcodePoolVo>(pageHandle.getPage(),pageHandle.getPagesize());
|
|
|
List<PromoteQrcodePoolVo> list = promoteQrcodePoolMapper.getlist(page,pageHandle);
|
|
|
Map<String,Object> res = new HashMap<>();
|
|
|
@@ -83,7 +85,7 @@ public class PromoteQrcodePoolServiceImpl extends ServiceImpl<PromoteQrcodePoolM
|
|
|
* @return
|
|
|
*/
|
|
|
public PromoteQrcodePoolVo getInfoById(String id){
|
|
|
- PostBasePageHandle pageHandle = new PostBasePageHandle();
|
|
|
+ GetPromoteQrcodePoolHandle pageHandle = new GetPromoteQrcodePoolHandle();
|
|
|
pageHandle.setId(Integer.parseInt(id));
|
|
|
pageHandle.setPage(1);
|
|
|
pageHandle.setPage(1);
|