mirror of
https://github.com/geekgeekrun/geekgeekrun.git
synced 2026-07-09 14:32:44 +08:00
adjust some column - remove -ed in 'encrypted'
This commit is contained in:
@@ -6,7 +6,7 @@ export class BossActiveStatusRecord {
|
||||
id: number;
|
||||
|
||||
@Column()
|
||||
encryptedBossId: string;
|
||||
encryptBossId: string;
|
||||
|
||||
@Column()
|
||||
lastActiveStatus: string;
|
||||
|
||||
@@ -3,10 +3,10 @@ import { Entity, PrimaryGeneratedColumn, Column, Index, PrimaryColumn } from "ty
|
||||
@Entity()
|
||||
export class BossInfo {
|
||||
@PrimaryColumn()
|
||||
encryptedBossId: string;
|
||||
encryptBossId: string;
|
||||
|
||||
@Column()
|
||||
encryptedCompanyId: string;
|
||||
encryptCompanyId: string;
|
||||
|
||||
@Column()
|
||||
name: string;
|
||||
|
||||
@@ -6,7 +6,7 @@ export class BossInfoChangeLog {
|
||||
id: number;
|
||||
|
||||
@Column()
|
||||
encryptedBossId: string;
|
||||
encryptBossId: string;
|
||||
|
||||
@Column()
|
||||
updateTime: Date;
|
||||
|
||||
@@ -6,10 +6,10 @@ export class ChatStartupLog {
|
||||
id: number;
|
||||
|
||||
@Column()
|
||||
encryptedPositionId: string;
|
||||
encryptPositionId: string;
|
||||
|
||||
@Column()
|
||||
encryptedCurrentUserId: string;
|
||||
encryptCurrentUserId: string;
|
||||
|
||||
@Column()
|
||||
date: Date;
|
||||
|
||||
@@ -3,7 +3,7 @@ import { Entity, PrimaryGeneratedColumn, Column, Index, PrimaryColumn } from "ty
|
||||
@Entity()
|
||||
export class CompanyInfo {
|
||||
@PrimaryColumn()
|
||||
encryptedCompanyId: string;
|
||||
encryptCompanyId: string;
|
||||
|
||||
@Column()
|
||||
name: string;
|
||||
|
||||
@@ -6,7 +6,7 @@ export class CompanyInfoChangeLog {
|
||||
id: number;
|
||||
|
||||
@Column()
|
||||
encryptedCompanyId: string;
|
||||
encryptCompanyId: string;
|
||||
|
||||
@Column()
|
||||
updateTime: Date;
|
||||
|
||||
@@ -3,7 +3,7 @@ import { Entity, PrimaryGeneratedColumn, Column, Unique, Index, PrimaryColumn }
|
||||
@Entity()
|
||||
export class JobInfo {
|
||||
@PrimaryColumn()
|
||||
encryptedJobId: string;
|
||||
encryptJobId: string;
|
||||
|
||||
@Column()
|
||||
jobName: string;
|
||||
@@ -51,8 +51,8 @@ export class JobInfo {
|
||||
description: string;
|
||||
|
||||
@Column()
|
||||
encryptedBossId: string;
|
||||
encryptBossId: string;
|
||||
|
||||
@Column()
|
||||
encryptedCompanyId: string;
|
||||
encryptCompanyId: string;
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ export class JobInfoChangeLog {
|
||||
id: number;
|
||||
|
||||
@Column()
|
||||
encryptedJobId: string;
|
||||
encryptJobId: string;
|
||||
|
||||
@Column()
|
||||
updateTime: Date;
|
||||
|
||||
@@ -3,7 +3,7 @@ import { Entity, PrimaryGeneratedColumn, Column, Index, PrimaryColumn } from "ty
|
||||
@Entity()
|
||||
export class UserInfo {
|
||||
@PrimaryColumn()
|
||||
encryptedUserId: string;
|
||||
encryptUserId: string;
|
||||
|
||||
@Column()
|
||||
name: string;
|
||||
|
||||
Reference in New Issue
Block a user