21 lines
420 B
TypeScript
21 lines
420 B
TypeScript
|
|
import { Entity, Column} from "typeorm";
|
||
|
|
import { EntityBase } from "./base/Base";
|
||
|
|
|
||
|
|
@Entity("relationship")
|
||
|
|
export class Relationship extends EntityBase {
|
||
|
|
@Column({
|
||
|
|
nullable: true,
|
||
|
|
comment: "สถานภาพ",
|
||
|
|
length: 255,
|
||
|
|
default: null,
|
||
|
|
})
|
||
|
|
name: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export class CreateRelationship {
|
||
|
|
@Column()
|
||
|
|
relationship: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type UpdateRelationship = Partial<CreateRelationship>;
|