fix SalaryEmployee ลบไฟล์ รวมไฟล์ เพิ่ม field
This commit is contained in:
parent
42bad7b302
commit
3b5096c005
7 changed files with 55 additions and 920 deletions
|
|
@ -3,7 +3,7 @@ import { EntityBase } from "./base/Base";
|
|||
import { EmployeePosLevel } from "./EmployeePosLevel";
|
||||
import { EmployeePosType } from "./EmployeePosType";
|
||||
import { EmployeePosMaster } from "./EmployeePosMaster";
|
||||
import { ProfileSalaryEmployee } from "./ProfileSalaryEmployee";
|
||||
import { ProfileSalary } from "./ProfileSalary";
|
||||
import { ProfileCertificate } from "./ProfileCertificate";
|
||||
import { ProfileTraining } from "./ProfileTraining";
|
||||
import { ProfileInsignia } from "./ProfileInsignia";
|
||||
|
|
@ -236,8 +236,8 @@ export class ProfileEmployee extends EntityBase {
|
|||
@OneToMany(() => EmployeePosMaster, (v) => v.next_holder)
|
||||
next_holders: EmployeePosMaster[];
|
||||
|
||||
@OneToMany(() => ProfileSalaryEmployee, (v) => v.profile)
|
||||
profileSalary: ProfileSalaryEmployee[];
|
||||
@OneToMany(() => ProfileSalary, (v) => v.profile)
|
||||
profileSalarys: ProfileSalary[];
|
||||
|
||||
@OneToMany(() => ProfileCertificate, (v) => v.profileEmployee)
|
||||
profileCertificates: ProfileCertificate[];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue