app文件管理
This commit is contained in:
@ -1,13 +1,14 @@
|
||||
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 com.fuyuanshen.app.domain.dto.AppFileDto;
|
||||
import com.fuyuanshen.app.domain.vo.AppFileVo;
|
||||
import com.fuyuanshen.common.core.domain.R;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 登录校验方法
|
||||
*
|
||||
@ -18,8 +19,23 @@ import org.springframework.stereotype.Service;
|
||||
@Service
|
||||
public class AppFileService {
|
||||
|
||||
private final IAppFileService appFileService;
|
||||
|
||||
public List<AppFileVo> list(AppFileDto bo) {
|
||||
|
||||
public TableDataInfo<DeviceVo> queryPageList(AppUserBo bo, PageQuery pageQuery) {
|
||||
return null;
|
||||
}
|
||||
public R<Void> add(AppFileDto bo) {
|
||||
return R.ok();
|
||||
}
|
||||
|
||||
public R<Void> edit(AppFileDto bo) {
|
||||
return R.ok();
|
||||
}
|
||||
|
||||
|
||||
|
||||
public R<Void> delete(AppFileDto bo) {
|
||||
return R.ok();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user