forked from wangziqi/gongxue-base
- Delete department.entity.ts, user-department.entity.ts - Remove Department/UserDepartment from entities/index.ts - Remove departmentId column from 18 entities (AttendanceRecord, ArchiveAttachment, Bill, ClassSchedule, Classroom, ClassroomRental, Deposit, DepositInstallment, ExamScore, LearningRecord, Occupancy, PersonalExpense, ResultArchive, Room, RoomExpense, Student, StudentEnrollment, StudentProfile, StudentReport) - Remove departments/ module entirely - Delete campus-scope.ts, campus-scope.middleware.ts (request-utils.ts kept — it's just IP extraction) - Simplify common.module.ts to empty module - Remove CampusScopeMiddleware from app.module.ts - Remove all CampusScope injections and filter calls across all services - Remove departmentId from all DTOs and controllers - Simplify dingtalk/wecom sync to only sync users (no dept table) - Update seed module to remove department seeding - Clean frontend compilation
46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
import {
|
|
Entity,
|
|
PrimaryGeneratedColumn,
|
|
Column,
|
|
CreateDateColumn,
|
|
UpdateDateColumn,
|
|
ManyToOne,
|
|
JoinColumn,
|
|
} from 'typeorm';
|
|
import { Student } from './student.entity';
|
|
|
|
@Entity('result_archives')
|
|
export class ResultArchive {
|
|
@PrimaryGeneratedColumn()
|
|
id: number;
|
|
|
|
@Column({ name: 'student_id', type: 'integer', unique: true })
|
|
studentId: number;
|
|
|
|
@ManyToOne(() => Student, { eager: true })
|
|
@JoinColumn({ name: 'student_id' })
|
|
student: Student;
|
|
|
|
@Column({ name: 'culture_final_score', type: 'decimal', precision: 5, scale: 2, nullable: true })
|
|
cultureFinalScore: number;
|
|
|
|
@Column({ name: 'professional_final_score', type: 'decimal', precision: 5, scale: 2, nullable: true })
|
|
professionalFinalScore: number;
|
|
|
|
@Column({ name: 'admission_status', length: 50, nullable: true })
|
|
admissionStatus: string;
|
|
|
|
@Column({ name: 'admitted_college', length: 100, nullable: true })
|
|
admittedCollege: string;
|
|
|
|
@Column({ name: 'admitted_major', length: 100, nullable: true })
|
|
admittedMajor: string;
|
|
|
|
|
|
@CreateDateColumn({ name: 'created_at' })
|
|
createdAt: Date;
|
|
|
|
@UpdateDateColumn({ name: 'updated_at' })
|
|
updatedAt: Date;
|
|
}
|