mirror of
https://github.com/geekgeekrun/geekgeekrun.git
synced 2026-07-23 05:27:41 +08:00
18 lines
289 B
TypeScript
18 lines
289 B
TypeScript
import * as typeorm from 'typeorm';
|
|
const { Entity, Column, PrimaryGeneratedColumn } = typeorm
|
|
|
|
@Entity()
|
|
export class BossInfoChangeLog {
|
|
@PrimaryGeneratedColumn()
|
|
id: number;
|
|
|
|
@Column()
|
|
encryptBossId: string;
|
|
|
|
@Column()
|
|
updateTime: Date;
|
|
|
|
@Column()
|
|
dataAsJson: string;
|
|
}
|