feat. FX_PREREGIST_01 템플릿 제작

This commit is contained in:
clkim
2025-11-06 21:01:56 +09:00
parent a2112f7b2d
commit e943f3a9a2
9 changed files with 1490 additions and 530 deletions

34
layers/types/GdsType.ts Normal file
View File

@@ -0,0 +1,34 @@
/**
* GDS
*/
interface ReqGetGdsClientPolicyTotal {
policy_grp: string
device_nation?: string
client_lang: string
include_coverages?: boolean
// QA
runType?: string
qc?: string
}
interface DtoGetGdsClientPolicyTotal {
is_default: boolean
nation: string
regulation: string
timezone: string
utc_offset: number
lang: string
coverages: Array<string>
}
interface ResGetGdsClientPolicyTotal {
code?: number
message?: string
res_code?: number
res_message?: string
res_data?: DtoGetGdsClientPolicyTotal
req_data?: ReqGetGdsClientPolicyTotal
}
export type { ReqGetGdsClientPolicyTotal, ResGetGdsClientPolicyTotal }