mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-12 15:25:49 +00:00
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import { Decimal } from 'decimal.js-light'
|
|
import { BaseEntity, Entity, PrimaryGeneratedColumn, Column } from 'typeorm'
|
|
import { DecimalTransformer } from '../../src/typeorm/DecimalTransformer'
|
|
|
|
@Entity('event_protocol')
|
|
export class EventProtocol extends BaseEntity {
|
|
@PrimaryGeneratedColumn('increment', { unsigned: true })
|
|
id: number
|
|
|
|
@Column({ length: 100, nullable: false, collation: 'utf8mb4_unicode_ci' })
|
|
type: string
|
|
|
|
@Column({ name: 'created_at', type: 'datetime', default: () => 'CURRENT_TIMESTAMP' })
|
|
createdAt: Date
|
|
|
|
@Column({ name: 'user_id', unsigned: true, nullable: false })
|
|
userId: number
|
|
|
|
@Column({ name: 'x_user_id', unsigned: true, nullable: true })
|
|
xUserId: number
|
|
|
|
@Column({ name: 'x_community_id', unsigned: true, nullable: true })
|
|
xCommunityId: number
|
|
|
|
@Column({ name: 'transaction_id', unsigned: true, nullable: true })
|
|
transactionId: number
|
|
|
|
@Column({ name: 'contribution_id', unsigned: true, nullable: true })
|
|
contributionId: number
|
|
|
|
@Column({
|
|
type: 'decimal',
|
|
precision: 40,
|
|
scale: 20,
|
|
nullable: true,
|
|
transformer: DecimalTransformer,
|
|
})
|
|
amount: Decimal
|
|
}
|