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