web-上传组件、富文本组件

This commit is contained in:
2025-10-20 11:25:34 +08:00
parent f137d7d720
commit 2f1835bdbf
12 changed files with 1608 additions and 445 deletions

View File

@@ -44,6 +44,13 @@ export interface Resource extends BaseDTO {
creator?: string;
/** 更新者 */
updater?: string;
/** 标签列表 */
tags?: Tag[];
/** 是否允许评论 */
allowComment?: boolean;
/** 是否置顶 */
isTop?: boolean;
}
/**
@@ -106,6 +113,8 @@ export interface ResourceTag extends BaseDTO {
* 标签实体
*/
export interface Tag extends BaseDTO {
/** 标签ID */
tagID?: string;
/** 标签名称 */
name?: string;
/** 标签描述 */