Browse Source

Merge branch 'main' of http://git.cc-lotus.info/Information/cxyy-service into main

zs 3 months ago
parent
commit
f6c46af177
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/entity/match/matchRegistration.entity.ts

+ 2 - 1
src/entity/match/matchRegistration.entity.ts

@@ -58,6 +58,7 @@ export class MatchRegistration extends BaseModel {
   final_score_details: Array<any>;
   @Column({ type: 'timestamp without time zone', nullable: true, comment: '决赛开始时间', transformer: { from: value => (value ? dayjs(value).format('YYYY-MM-DD HH:mm:ss') : value), to: value => value } })
   final_start_time: Date;
-
+  @Column({ type: 'integer', nullable: true, comment: '最终排名' })
+  last_order_no: number;
   // 决赛名次根据分数生成
 }