create posmaster prefix null

This commit is contained in:
mamoss 2025-03-19 10:18:03 +07:00
parent b5e40cb127
commit 224290da87
4 changed files with 8 additions and 8 deletions

View file

@ -235,13 +235,13 @@ export class EmployeePosMaster extends EntityBase {
export class CreateEmployeePosMaster {
@Column()
posMasterNoPrefix: string;
posMasterNoPrefix: string | null;
@Column()
posMasterNo: number;
@Column()
posMasterNoSuffix: string;
posMasterNoSuffix: string | null;
@Column("uuid")
positions: CreateEmployeePosDict[];

View file

@ -267,13 +267,13 @@ export class PosMaster extends EntityBase {
export class CreatePosMaster {
@Column()
posMasterNoPrefix: string;
posMasterNoPrefix: string | null;
@Column()
posMasterNo: number;
@Column()
posMasterNoSuffix: string;
posMasterNoSuffix: string | null;
@Column("uuid")
positions: CreatePosDict[];