Feat: Integrate Control Letter

This commit is contained in:
hasyim_kai
2025-11-04 16:56:08 +07:00
parent 2275f4dc99
commit 331f4a6b20
15 changed files with 365 additions and 173 deletions
+18
View File
@@ -0,0 +1,18 @@
import { type Base, genBase } from "./_base"
export interface ControlLetter extends Base {
sep_status: string
control_plan_date: string
specialist_sub_specialist_id: string
dpjp_id: string
}
export function genControlLetter(): ControlLetter {
return {
...genBase(),
sep_status: '',
control_plan_date: '',
specialist_sub_specialist_id: '',
dpjp_id: '',
}
}