update
This commit is contained in:
61
src/entity/compliance_aml_news.ts
Normal file
61
src/entity/compliance_aml_news.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn, UpdateDateColumn, DeleteDateColumn, Index, JoinColumn, ManyToOne } from "typeorm";
|
||||
import { Status } from "../types/status";
|
||||
import { EformLanguage } from "./eform_languages";
|
||||
import { ComplianceRiskPepType } from "../types/compliance";
|
||||
|
||||
@Entity("compliance_aml_news", { schema: "compliances" })
|
||||
export class ComplianceAmlNew {
|
||||
@PrimaryGeneratedColumn("uuid")
|
||||
id: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 256,
|
||||
})
|
||||
name: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 256,
|
||||
})
|
||||
remarks: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 4096,
|
||||
})
|
||||
link: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
length: 4096,
|
||||
})
|
||||
file: string;
|
||||
|
||||
@Column({
|
||||
nullable: false,
|
||||
length: 64,
|
||||
})
|
||||
status: Status;
|
||||
|
||||
@Column()
|
||||
@CreateDateColumn()
|
||||
created_at: Date;
|
||||
|
||||
@Column({ nullable: true, length: 256 })
|
||||
created_by: string;
|
||||
|
||||
@Column({ nullable: true })
|
||||
@UpdateDateColumn()
|
||||
updated_at: Date;
|
||||
|
||||
@Column({ nullable: true, length: 256 })
|
||||
updated_by: string;
|
||||
|
||||
@Column({ nullable: true })
|
||||
@DeleteDateColumn()
|
||||
deleted_at: Date;
|
||||
|
||||
@Column({ nullable: true, length: 256 })
|
||||
deleted_by: string;
|
||||
}
|
||||
@ -5,3 +5,4 @@ export * from "../entity/compliance_risk_parameter_informations";
|
||||
export * from "../entity/compliance_risk_formulas";
|
||||
export * from "../entity/compliance_risk_transactions";
|
||||
export * from "../entity/compliance_risk_transaction_details";
|
||||
export * from "../entity/compliance_aml_news";
|
||||
|
||||
Reference in New Issue
Block a user