UserService.java 238 字节
Newer Older
Q
qinxiaodong@pannk.com 已提交
1 2 3 4 5 6 7 8 9 10 11 12
package com.pannk.user.service;

import com.baomidou.mybatisplus.extension.service.IService;
import com.pannk.user.entity.UserEntity;

/**
 * Created by wolf on 20-12-3.
 */
public interface UserService extends IService<UserEntity> {


}