no message

This commit is contained in:
Kittapath 2024-01-31 18:02:50 +07:00
parent 923d75ebe3
commit 165d5e6837
2 changed files with 41 additions and 9 deletions

View file

@ -27,10 +27,8 @@ export class PosMaster extends EntityBase {
@Column({
nullable: true,
comment: "เลขที่ตำแหน่ง เป็นตัวเลข",
length: 16,
default: "string",
})
posMasterNo: string;
posMasterNo: number;
@Column({
nullable: true,
@ -168,7 +166,7 @@ export class CreatePosMaster {
posMasterNoPrefix: string;
@Column()
posMasterNo: string;
posMasterNo: number;
@Column()
posMasterNoSuffix: string;
@ -177,19 +175,19 @@ export class CreatePosMaster {
positions: CreatePosDict[];
@Column("uuid")
orgRootId?: string;
orgRootId?: string | null;
@Column("uuid")
orgChild1Id?: string;
orgChild1Id?: string | null;
@Column("uuid")
orgChild2Id?: string;
orgChild2Id?: string | null;
@Column("uuid")
orgChild3Id?: string;
orgChild3Id?: string | null;
@Column("uuid")
orgChild4Id?: string;
orgChild4Id?: string | null;
}
export type UpdatePosMaster = Partial<PosMaster>;