시스템관리 > 권한관리 > 사이트관리 화면과 API 추가

This commit is contained in:
이진기
2024-11-19 16:01:42 +09:00
parent aed1321d88
commit 843db73d12
10 changed files with 538 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
export type SiteType = {
siteId: string;
siteName: string;
siteDescription: string;
siteDomain: string;
siteType: '' | 'ADMIN' | 'USER';
sitePrefix: string;
siteLocale: string;
siteLogo: string;
bscUrl: string;
lgnUrl: string;
siteRegdate: string;
};