32 lines
772 B
Java
32 lines
772 B
Java
package net.srt.service;
|
|
|
|
import net.srt.entity.DataServiceAppEntity;
|
|
import net.srt.framework.common.page.PageResult;
|
|
import net.srt.framework.mybatis.service.BaseService;
|
|
import net.srt.query.DataServiceAppQuery;
|
|
import net.srt.vo.DataServiceAppVo;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @ClassName : DataServiceAppService
|
|
* @Description :
|
|
* @Author : FJJ
|
|
* @Date: 2023-12-23 08:53
|
|
*/
|
|
public interface DataServiceAppService extends BaseService<DataServiceAppEntity> {
|
|
PageResult<DataServiceAppVo> page(DataServiceAppQuery query);
|
|
|
|
void save1(DataServiceAppVo vo);
|
|
|
|
void update1(DataServiceAppVo vo);
|
|
|
|
void delete(List<Long> idList);
|
|
|
|
void addAuth(DataServiceAppVo authVO);
|
|
|
|
void upAuth(DataServiceAppVo authVO);
|
|
|
|
void cancelAuth(Long authId);
|
|
}
|