MediaFile.ts 770 字节
export class MediaFile {
  mediaId: string;
  userId: string;
  userName: string;
  customerId: string;
  objId: string;
  filePath: string;
  address: string;
  datetime: string;
  constructor(
    options: {
      mediaId?: string;
      userId?: string;
      userName?: string;
      customerId?: string;
      objId?: string;
      filePath?: string;
      address?: string;
      datetime?: string;
    } = {}
  ) {
    this.mediaId = options.mediaId || "";
    this.userId = options.userId || "";
    this.userName = options.userName || "";
    this.customerId = options.customerId || "";
    this.objId = options.objId || "";
    this.filePath = options.filePath || "";
    this.address = options.address || "";
    this.datetime = options.datetime || "";
  }
}