fix: 修改uploadFiles和container上传

This commit is contained in:
2024-10-24 09:23:34 +08:00
parent 0eae9458c6
commit d8fec88e54
4 changed files with 115 additions and 93 deletions

View File

@@ -3,9 +3,10 @@ import { DataTypes, Model } from 'sequelize';
export interface ContainerData {}
export type ContainerPublish = {
rid?: string; // resource id
name?: string;
key: string;
title?: string;
description?: string;
fileName?: string;
version?: string;
};
export type Container = Partial<InstanceType<typeof ContainerModel>>;