no message

This commit is contained in:
kittapath 2024-10-09 14:14:36 +07:00
parent b14d2d4a46
commit 428ed28b64
4 changed files with 222 additions and 1 deletions

View file

@ -0,0 +1,42 @@
import { Entity, Column, ManyToOne, JoinColumn, OneToMany } from "typeorm";
import { EntityBase } from "./base/Base";
import { StateOperator } from "./StateOperator";
import { Workflow } from "./Workflow";
@Entity("stateOperatorUser")
export class StateOperatorUser extends EntityBase {
@Column({
nullable: true,
comment: "",
length: 255,
default: null,
})
profile: string;
@Column({
nullable: true,
comment: "",
length: 255,
default: null,
})
type: string; //commander
@Column({
nullable: true,
comment: "ลำดับ",
default: null,
})
order: number; //
@Column({
nullable: true,
length: 40,
comment: "คีย์นอก(FK)ของตาราง stateOperator",
default: null,
})
stateOperatorId: string;
@ManyToOne(() => StateOperator, (stateOperator) => stateOperator.stateOperatorUsers)
@JoinColumn({ name: "stateOperatorId" })
stateOperator: StateOperator;
}