ResourceController 란 것이 있을 것

This commit is contained in:
2023-09-24 04:06:59 +00:00
parent 4bc5407bf2
commit 905b401aab
5 changed files with 82 additions and 2 deletions
+12 -1
View File
@@ -1,4 +1,15 @@
//Type 정의
export type GeneralName = string & { zz_t?: "GeneralName" };
import { type } from "os";
export type GeneralID = number & { zz_t?: "GeneralID" };
export type GeneralName = string & { zz_t?: "GeneralName" };
export type CityID = number & { zz_t?: "CityID" };
export type CityName = string & { zz_t?: "CityName" };
export type NationID = number & { zz_t?: "NationID" };
export type NationName = string & { zz_t?: "NationName" };
//TODO: 무언가의 keyof 로 바꿔야함
export type NationType = string & { zz_t?: "NationType" };