31 lines
531 B
TypeScript
31 lines
531 B
TypeScript
|
|
import { Entity, Column } from "typeorm";
|
||
|
|
import { EntityBase } from "./base/Base";
|
||
|
|
|
||
|
|
@Entity("commandCode")
|
||
|
|
export class CommandCode extends EntityBase {
|
||
|
|
@Column({
|
||
|
|
nullable: true,
|
||
|
|
comment: "คำสั่ง",
|
||
|
|
length: 255,
|
||
|
|
default: null,
|
||
|
|
})
|
||
|
|
name: string;
|
||
|
|
|
||
|
|
@Column({
|
||
|
|
nullable: true,
|
||
|
|
comment: "HRMS Id",
|
||
|
|
default: null,
|
||
|
|
})
|
||
|
|
code: number;
|
||
|
|
}
|
||
|
|
|
||
|
|
export class CreateCommandCode {
|
||
|
|
@Column()
|
||
|
|
name: string;
|
||
|
|
|
||
|
|
@Column()
|
||
|
|
code: number;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type UpdateCommandCode = Partial<CreateCommandCode>;
|