This commit is contained in:
fro1991
2025-01-25 16:03:57 +07:00
parent e4f5712058
commit 57f7cbe14e
2 changed files with 51 additions and 1 deletions

View File

@ -0,0 +1,47 @@
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index } from 'typeorm';
import { Status } from '../types/status';
@Entity('log_hikvision')
export class LogHikvision {
@PrimaryGeneratedColumn('uuid')
id: string;
@Column()
@CreateDateColumn()
created_at: Date;
@Column({ nullable: true })
@UpdateDateColumn()
updated_at: Date;
@Column({
nullable: true,
length: 128
})
type: string;
@Column({
nullable: false,
length: 4096
})
incoming: string;
@Column({
nullable: false,
length: 4096
})
request: string;
@Column({
nullable: false,
length: 128
})
url: string;
@Column({
nullable: false,
length: 4096
})
response: string;
}

View File

@ -69,6 +69,7 @@ import { PaymentApproval } from "./entity/payment_approval";
import { FinanceMemo } from "./entity/finance_memo";
import { BankGaransiPending } from "./entity/bank_garansi_pending";
import { TellerMutation } from "./entity/teller_mutation";
import { LogHikvision } from "./entity/log_hikvision";
export {
User, //
@ -148,5 +149,7 @@ export {
CreditApplicationChat,
CreditApplicationFileStatus,
Application,
TellerMutation
TellerMutation,
LogHikvision
};