From 6f6207ef6eb81d2abb3805bc2cba889ea2abd135 Mon Sep 17 00:00:00 2001
From: Ben Lin <maobin001@msn.com>
Date: 星期日, 02 六月 2024 01:12:32 +0800
Subject: [PATCH] 低代码更新

---
 src/api/tigerapi/model/systemModel.ts |   44 +++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 43 insertions(+), 1 deletions(-)

diff --git a/src/api/tigerapi/model/systemModel.ts b/src/api/tigerapi/model/systemModel.ts
index 6e29d97..5cbf973 100644
--- a/src/api/tigerapi/model/systemModel.ts
+++ b/src/api/tigerapi/model/systemModel.ts
@@ -1,4 +1,5 @@
 import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
+
 export type AD_INFO = {
   nation?: string;
   province?: string;
@@ -118,7 +119,7 @@
   USER_NAME: string;
   USER_PWD: string;
   CREATE_TIME: string;
-  STATUS_CODE:any;
+  STATUS_CODE: any;
 }
 
 export interface UserGPListItem {
@@ -280,6 +281,46 @@
   HALF_CHECK: string;
 }
 
+export type EntityParams = {
+  Namespace?: string;
+  StartWith?: string;
+};
+
+export interface EntityList {
+  Total: number;
+  Data: EntityListItem[];
+}
+
+export interface EntityListItem {
+  FullName: string;
+  Namespace: string;
+  Name: string;
+  Properties: EntityPropertie[];
+}
+
+export interface EntityPropertie {
+  Name: string;
+  Type: string;
+}
+
+export interface SYS_LOW_CODE {
+  ID: string;
+  CREATE_TIME: Date;
+  CREATE_USER: string;
+  UPDATE_TIME: Date;
+  UPDATE_USER: string;
+  GHOST_ROW: boolean;
+  AUTH_ORG: string;
+  AUTH_PROD: string;
+  AUTH_WH: string;
+  SEARCH_FORM_JSON: string;
+  BASE_FORM_JSON: string;
+  FORM_JSON: string;
+  ASSEMBLY_NAME: string;
+  SEARCH_ASSY_NAME: string;
+  CRUD_ASSY_NAME: string;
+}
+
 /**
  * @description: Request list return value
  */
@@ -290,3 +331,4 @@
 export type RoleListGetResultModel = RoleListItem[];
 export type ParamsListGetResultModel = BasicFetchResult<ParamsListItem>;
 export type LoginLogPageListGetResultModel = BasicFetchResult<LoginLogListItem>;
+export type EntityListGetResultModel = BasicFetchResult<EntityPropertie>;

--
Gitblit v1.9.3