26 lines
611 B
Java
26 lines
611 B
Java
|
package com.fuyuanshen.app.service;
|
||
|
|
||
|
import com.fuyuanshen.app.domain.bo.AppUserBo;
|
||
|
import com.fuyuanshen.app.domain.vo.DeviceVo;
|
||
|
import com.fuyuanshen.common.mybatis.core.page.PageQuery;
|
||
|
import com.fuyuanshen.common.mybatis.core.page.TableDataInfo;
|
||
|
import lombok.RequiredArgsConstructor;
|
||
|
import lombok.extern.slf4j.Slf4j;
|
||
|
import org.springframework.stereotype.Service;
|
||
|
|
||
|
/**
|
||
|
* 登录校验方法
|
||
|
*
|
||
|
* @author Lion Li
|
||
|
*/
|
||
|
@RequiredArgsConstructor
|
||
|
@Slf4j
|
||
|
@Service
|
||
|
public class AppFileService {
|
||
|
|
||
|
|
||
|
public TableDataInfo<DeviceVo> queryPageList(AppUserBo bo, PageQuery pageQuery) {
|
||
|
return null;
|
||
|
}
|
||
|
}
|