add dpis controller
This commit is contained in:
parent
497decefe4
commit
4852131651
74 changed files with 606 additions and 336 deletions
|
|
@ -6,7 +6,6 @@ import { ProfileFamilyCoupleHistory } from "./ProfileFamilyCoupleHistory";
|
|||
|
||||
@Entity("profileFamilyCouple")
|
||||
export class ProfileFamilyCouple extends EntityBase {
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
default: null,
|
||||
|
|
@ -100,7 +99,6 @@ export class ProfileFamilyCouple extends EntityBase {
|
|||
@ManyToOne(() => ProfileEmployee, (v) => v.profileFamilyCouple)
|
||||
@JoinColumn({ name: "profileEmployeeId" })
|
||||
profileEmployee: ProfileEmployee;
|
||||
|
||||
}
|
||||
|
||||
export type CreateProfileFamilyCouple = {
|
||||
|
|
@ -114,7 +112,7 @@ export type CreateProfileFamilyCouple = {
|
|||
coupleCitizenId: string | null;
|
||||
coupleLive: boolean | null;
|
||||
relationship: string | null;
|
||||
}
|
||||
};
|
||||
|
||||
export type CreateProfileEmployeeFamilyCouple = {
|
||||
profileEmployeeId: string;
|
||||
|
|
@ -127,7 +125,7 @@ export type CreateProfileEmployeeFamilyCouple = {
|
|||
coupleCitizenId: string | null;
|
||||
coupleLive: boolean | null;
|
||||
relationship: string | null;
|
||||
}
|
||||
};
|
||||
|
||||
export type UpdateProfileFamilyCouple = {
|
||||
// couple?: boolean | null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue