功能管理

This commit is contained in:
2026-01-09 15:52:59 +08:00
commit f3b3a454fc
37 changed files with 1628 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
package com.cczsa.xinghe.codegen.service;
import com.cczsa.xinghe.codegen.entity.req.funOperation.FunOperationQueryReq;
import com.cczsa.xinghe.codegen.entity.req.funOperation.FunOperationSaveUpdateReq;
import com.cczsa.xinghe.codegen.entity.res.funOperation.FunOperationQueryRes;
import com.cczsa.xinghe.codegen.util.XResult;
/**
* 操作管理 服务层接口。
*
* @author xia
* @version 0.0.1
*/
public interface FunOperationService {
/**
* 获取操作列表
*/
XResult<FunOperationQueryRes> query(FunOperationQueryReq req);
/**
* 创建/修改操作
*/
XResult<Void> saveUpdate(FunOperationSaveUpdateReq req);
/**
* 删除操作
*/
XResult<Void> delete();
}