Merge pull request #180 from dikstub-rssa/feat/adjustment-org-to-the-be-153
Fix: typo in Unit Position Model
This commit is contained in:
@@ -2,7 +2,7 @@ import { type Base, genBase } from './_base'
|
|||||||
import type { Employee } from './employee'
|
import type { Employee } from './employee'
|
||||||
|
|
||||||
export interface UnitPosition extends Base {
|
export interface UnitPosition extends Base {
|
||||||
unit_code: string
|
unit_id: string
|
||||||
code: string
|
code: string
|
||||||
name: string
|
name: string
|
||||||
headStatus?: boolean
|
headStatus?: boolean
|
||||||
@@ -14,7 +14,7 @@ export interface UnitPosition extends Base {
|
|||||||
export function genUnitPosition(): UnitPosition {
|
export function genUnitPosition(): UnitPosition {
|
||||||
return {
|
return {
|
||||||
...genBase(),
|
...genBase(),
|
||||||
unit_code: '',
|
unit_id: '',
|
||||||
code: '',
|
code: '',
|
||||||
name: '',
|
name: '',
|
||||||
headStatus: false,
|
headStatus: false,
|
||||||
|
|||||||
Reference in New Issue
Block a user