update
This commit is contained in:
@ -10,12 +10,12 @@ import {
|
|||||||
JoinColumn,
|
JoinColumn,
|
||||||
} from "typeorm";
|
} from "typeorm";
|
||||||
|
|
||||||
import { AmnanesisStatus } from "../../enum/amnanesisStatus";
|
import { anamnesisStatus } from "../../enum/anamnesisStatus";
|
||||||
import { EmrRegistrationOutpatient } from "./emr_registration_outpatient";
|
import { EmrRegistrationOutpatient } from "./emr_registration_outpatient";
|
||||||
|
|
||||||
|
|
||||||
@Entity("emr_amnanesis", { schema: "emr" })
|
@Entity("emr_anamnesis", { schema: "emr" })
|
||||||
export class EmrAmnanesis {
|
export class Emranamnesis {
|
||||||
@PrimaryGeneratedColumn("uuid")
|
@PrimaryGeneratedColumn("uuid")
|
||||||
id: string;
|
id: string;
|
||||||
|
|
||||||
@ -38,10 +38,10 @@ export class EmrAmnanesis {
|
|||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
type: "enum",
|
type: "enum",
|
||||||
enum: AmnanesisStatus,
|
enum: anamnesisStatus,
|
||||||
nullable: false,
|
nullable: false,
|
||||||
})
|
})
|
||||||
status: AmnanesisStatus;
|
status: anamnesisStatus;
|
||||||
|
|
||||||
@Column()
|
@Column()
|
||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
export enum AmnanesisStatus {
|
export enum anamnesisStatus {
|
||||||
REFER = 'REFER',
|
REFER = 'REFER',
|
||||||
INPATIENT = 'INPATIENT',
|
INPATIENT = 'INPATIENT',
|
||||||
PRB = 'PRB',
|
PRB = 'PRB',
|
||||||
@ -4,7 +4,7 @@ export * from "../entity/emr/emr_registration_outpatient";
|
|||||||
export * from "../entity/emr/emr_registration_inpatient";
|
export * from "../entity/emr/emr_registration_inpatient";
|
||||||
export * from "../entity/emr/emr_registration_emergency";
|
export * from "../entity/emr/emr_registration_emergency";
|
||||||
export * from "../entity/emr/emr_registration_hemodialysis";
|
export * from "../entity/emr/emr_registration_hemodialysis";
|
||||||
export * from "../entity/emr/emr_amnanesis";
|
export * from "../entity/emr/emr_anamnesis";
|
||||||
|
|
||||||
export * from "../types/registration_type";
|
export * from "../types/registration_type";
|
||||||
export * from "../types/registration_status";
|
export * from "../types/registration_status";
|
||||||
|
|||||||
Reference in New Issue
Block a user