mirror of
https://github.com/geekgeekrun/geekgeekrun.git
synced 2026-05-30 20:50:44 +08:00
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:
@@ -15,5 +15,5 @@ export class BossInfo {
|
||||
date: Date;
|
||||
|
||||
@Column()
|
||||
title: Date;
|
||||
title: string;
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ export class ChatStartupLog {
|
||||
id: number;
|
||||
|
||||
@Column()
|
||||
encryptPositionId: string;
|
||||
encryptJobId: string;
|
||||
|
||||
@Column()
|
||||
encryptCurrentUserId: string;
|
||||
|
||||
@@ -14,12 +14,12 @@ export class CompanyInfo {
|
||||
@Column({
|
||||
nullable: true
|
||||
})
|
||||
scaleLow?: string;
|
||||
scaleLow?: number;
|
||||
|
||||
@Column({
|
||||
nullable: true
|
||||
})
|
||||
scaleHeight?: string;
|
||||
scaleHeight?: number;
|
||||
|
||||
@Column({
|
||||
nullable: true
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user