feat: update field
This commit is contained in:
parent
c079f43e8d
commit
af4489dccc
7 changed files with 162 additions and 160 deletions
|
|
@ -467,18 +467,18 @@ model EmployeeCheckup {
|
|||
employee Employee @relation(fields: [employeeId], references: [id], onDelete: Cascade)
|
||||
employeeId String
|
||||
|
||||
checkupResult String
|
||||
checkupType String
|
||||
checkupResult String?
|
||||
checkupType String?
|
||||
|
||||
province Province? @relation(fields: [provinceId], references: [id], onDelete: SetNull)
|
||||
provinceId String?
|
||||
|
||||
hospitalName String
|
||||
remark String
|
||||
medicalBenefitScheme String
|
||||
insuranceCompany String
|
||||
coverageStartDate DateTime
|
||||
coverageExpireDate DateTime
|
||||
hospitalName String?
|
||||
remark String?
|
||||
medicalBenefitScheme String?
|
||||
insuranceCompany String?
|
||||
coverageStartDate DateTime?
|
||||
coverageExpireDate DateTime?
|
||||
|
||||
createdBy String?
|
||||
createdAt DateTime @default(now())
|
||||
|
|
@ -492,14 +492,14 @@ model EmployeeWork {
|
|||
employee Employee @relation(fields: [employeeId], references: [id], onDelete: Cascade)
|
||||
employeeId String
|
||||
|
||||
ownerName String
|
||||
positionName String
|
||||
jobType String
|
||||
workplace String
|
||||
workPermitNo String
|
||||
workPermitIssuDate DateTime
|
||||
workPermitExpireDate DateTime
|
||||
workEndDate DateTime
|
||||
ownerName String?
|
||||
positionName String?
|
||||
jobType String?
|
||||
workplace String?
|
||||
workPermitNo String?
|
||||
workPermitIssuDate DateTime?
|
||||
workPermitExpireDate DateTime?
|
||||
workEndDate DateTime?
|
||||
remark String?
|
||||
|
||||
createdBy String?
|
||||
|
|
@ -514,17 +514,18 @@ model EmployeeOtherInfo {
|
|||
employee Employee @relation(fields: [employeeId], references: [id], onDelete: Cascade)
|
||||
employeeId String
|
||||
|
||||
citizenId String
|
||||
birthPlace String
|
||||
fatherFirstName String
|
||||
fatherLastName String
|
||||
motherFirstName String
|
||||
motherLastName String
|
||||
citizenId String?
|
||||
fatherBirthPlace String?
|
||||
fatherFirstName String?
|
||||
fatherLastName String?
|
||||
motherBirthPlace String?
|
||||
motherFirstName String?
|
||||
motherLastName String?
|
||||
|
||||
fatherFirstNameEN String
|
||||
fatherLastNameEN String
|
||||
motherFirstNameEN String
|
||||
motherLastNameEN String
|
||||
fatherFirstNameEN String?
|
||||
fatherLastNameEN String?
|
||||
motherFirstNameEN String?
|
||||
motherLastNameEN String?
|
||||
|
||||
createdBy String?
|
||||
createdAt DateTime @default(now())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue