no message
This commit is contained in:
parent
102f1f6646
commit
44b8b516eb
6 changed files with 241 additions and 21 deletions
|
|
@ -1,4 +1,13 @@
|
|||
import { Entity, Column, OneToMany, JoinColumn, ManyToOne, Double, ManyToMany, JoinTable } from "typeorm";
|
||||
import {
|
||||
Entity,
|
||||
Column,
|
||||
OneToMany,
|
||||
JoinColumn,
|
||||
ManyToOne,
|
||||
Double,
|
||||
ManyToMany,
|
||||
JoinTable,
|
||||
} from "typeorm";
|
||||
import { EntityBase } from "./base/Base";
|
||||
import { PosMaster } from "./PosMaster";
|
||||
import { PosLevel } from "./PosLevel";
|
||||
|
|
@ -69,6 +78,14 @@ export class Profile extends EntityBase {
|
|||
})
|
||||
prefix: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "คำนำหน้าชื่อตัวหลัก",
|
||||
length: 40,
|
||||
default: null,
|
||||
})
|
||||
prefixMain: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ชื่อ",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue