adjust some column - remove -ed in 'encrypted'

This commit is contained in:
geekgeekrun
2024-03-17 16:52:45 +08:00
parent 65a5f0f96f
commit 981d0981c6
9 changed files with 13 additions and 13 deletions

View File

@@ -6,7 +6,7 @@ export class BossActiveStatusRecord {
id: number;
@Column()
encryptedBossId: string;
encryptBossId: string;
@Column()
lastActiveStatus: string;

View File

@@ -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;

View File

@@ -6,7 +6,7 @@ export class BossInfoChangeLog {
id: number;
@Column()
encryptedBossId: string;
encryptBossId: string;
@Column()
updateTime: Date;

View File

@@ -6,10 +6,10 @@ export class ChatStartupLog {
id: number;
@Column()
encryptedPositionId: string;
encryptPositionId: string;
@Column()
encryptedCurrentUserId: string;
encryptCurrentUserId: string;
@Column()
date: Date;

View File

@@ -3,7 +3,7 @@ import { Entity, PrimaryGeneratedColumn, Column, Index, PrimaryColumn } from "ty
@Entity()
export class CompanyInfo {
@PrimaryColumn()
encryptedCompanyId: string;
encryptCompanyId: string;
@Column()
name: string;

View File

@@ -6,7 +6,7 @@ export class CompanyInfoChangeLog {
id: number;
@Column()
encryptedCompanyId: string;
encryptCompanyId: string;
@Column()
updateTime: Date;

View File

@@ -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;
}

View File

@@ -6,7 +6,7 @@ export class JobInfoChangeLog {
id: number;
@Column()
encryptedJobId: string;
encryptJobId: string;
@Column()
updateTime: Date;

View File

@@ -3,7 +3,7 @@ import { Entity, PrimaryGeneratedColumn, Column, Index, PrimaryColumn } from "ty
@Entity()
export class UserInfo {
@PrimaryColumn()
encryptedUserId: string;
encryptUserId: string;
@Column()
name: string;