模块增加参数

This commit is contained in:
2026-01-13 17:48:00 +08:00
parent 9c184c750e
commit 924db70d84
6 changed files with 96 additions and 30 deletions

View File

@@ -66,4 +66,24 @@ public class FunModuleEntity extends BaseEntity implements Serializable {
*/
private Integer sortOrder;
/**
* 是否需要请求参数
*/
private Boolean isReqParams;
/**
* 是否需要响应参数
*/
private Boolean isResParams;
/**
* 是否分页
*/
private Boolean isPage;
/**
* 路径参数与请求参数true互斥
*/
private String pathParams;
}