enhance run core - add the logic to save the start chat logic to db; modify some entity with wrong type.

This commit is contained in:
geekgeekrun
2024-03-17 21:57:05 +08:00
parent 883e443e61
commit 3c3d8f2bf2
8 changed files with 171 additions and 28 deletions

View File

@@ -15,5 +15,5 @@ export class BossInfo {
date: Date;
@Column()
title: Date;
title: string;
}

View File

@@ -6,7 +6,7 @@ export class ChatStartupLog {
id: number;
@Column()
encryptPositionId: string;
encryptJobId: string;
@Column()
encryptCurrentUserId: string;

View File

@@ -14,12 +14,12 @@ export class CompanyInfo {
@Column({
nullable: true
})
scaleLow?: string;
scaleLow?: number;
@Column({
nullable: true
})
scaleHeight?: string;
scaleHeight?: number;
@Column({
nullable: true

View File

@@ -26,18 +26,13 @@ export class JobInfo {
})
salaryMonth?: number;
@Column({
nullable: true
})
experienceYearLow?: number;
@Column({
nullable: true
})
experienceYearHigh?: number;
@Column()
publishDate: Date;
experienceName: string;
@Column({
nullable: true
})
publishDate?: Date;
@Column({
nullable: true