LymsChatgroupServiceImpl.java 857 Bytes
  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
package com.lyms.talkonlineweb.service.impl;

import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.lyms.talkonlineweb.domain.LymsChatgroup;
import com.lyms.talkonlineweb.service.LymsChatgroupService;
import com.lyms.talkonlineweb.mapper.LymsChatgroupMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;
import java.util.Map;

/**
*
*/
@Service
public class LymsChatgroupServiceImpl extends ServiceImpl<LymsChatgroupMapper, LymsChatgroup>
implements LymsChatgroupService{

@Autowired
private LymsChatgroupMapper lymsChatgroupMapper;

@Override
public List<Map<String, Object>> getPinfoBySesson(String froms, String did,String groupid) {
return lymsChatgroupMapper.getPinfoBySesson(froms,did,groupid);
}
}