Files
simrsx-fe/app/models/unit-position.ts
Khafid Prayoga df27262bd1 impl get position over detail divions
wip: detail division

for entry new division position

finish v1 divison-position
2025-10-24 16:51:55 +07:00

21 lines
360 B
TypeScript

import { type Base, genBase } from './_base'
export interface UnitPosition extends Base {
unit_id: number
code: string
name: string
headStatus?: boolean
employee_id?: number
}
export function genUnitPosition(): UnitPosition {
return {
...genBase(),
unit_id: 0,
code: '',
name: '',
headStatus: false,
employee_id: 0,
}
}