package com.xcong.excoin.modules.member.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.xcong.excoin.modules.member.entity.MemberEntity;
|
import com.xcong.excoin.modules.test.entity.TestUserEntity;
|
|
/**
|
* @author wzy
|
*/
|
public interface MemberService extends IService<MemberEntity> {
|
}
|