create posmaster prefix null
This commit is contained in:
parent
b5e40cb127
commit
224290da87
4 changed files with 8 additions and 8 deletions
|
|
@ -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[];
|
||||
|
|
|
|||
|
|
@ -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[];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue