feat(employee) : add contractPhases TS DTO
This commit is contained in:
13
frontend/services/dto/contract-phase.ts
Normal file
13
frontend/services/dto/contract-phase.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { ContractType } from './contract'
|
||||
|
||||
export type ContractPhase = {
|
||||
id: number
|
||||
contractType: ContractType
|
||||
weeklyHours: number | null
|
||||
isDriver: boolean
|
||||
startDate: string
|
||||
endDate: string | null
|
||||
periodIds: number[]
|
||||
isCurrent: boolean
|
||||
contractNature: 'CDI' | 'CDD' | 'INTERIM'
|
||||
}
|
||||
Reference in New Issue
Block a user