package com.lyms.talkonlineweb.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.lyms.talkonlineweb.domain.LymsUser;
import com.lyms.talkonlineweb.service.LymsUserService;
import com.lyms.talkonlineweb.mapper.LymsUserMapper;
import org.springframework.stereotype.Service;
/**
*
*/
@Service
public class LymsUserServiceImpl extends ServiceImpl<LymsUserMapper, LymsUser>
implements LymsUserService{
}