wangzhibo
2026-07-16 bac4362a0b7726d38a23d38f0d7913f2c2bab262
1
2
3
4
5
6
7
8
9
10
import { DataSource } from 'typeorm';
 
export class TempDataSource extends DataSource {
  /**
   * 重新构造元数据
   */
  async buildMetadatas() {
    await super.buildMetadatas();
  }
}