This commit is contained in:
六如
2024-10-31 09:36:48 +08:00
parent 08f708d8a4
commit 0e29510d0e
58 changed files with 3569 additions and 16 deletions

View File

@@ -73,6 +73,11 @@ public class ApiInfo {
*/
private Integer isNeedToken;
/**
* 是否有公共响应参数
*/
private Integer hasCommonResponse;
/**
* 注册来源1-系统注册,2-手动注册
*/

View File

@@ -128,6 +128,23 @@ export const tableColumns: PlusColumn[] = [
}
]
},
{
label: "公共参数",
prop: "hasCommonResponse",
width: 100,
valueType: "select",
options: [
{
label: "无",
value: 0,
color: "red"
},
{
label: "有",
value: 1
}
]
},
{
label: "注册来源",
prop: "regSource",