角色管理

This commit is contained in:
zjl
2021-10-03 21:14:13 +08:00
parent 94d899dfc4
commit 58892dea40
28 changed files with 514 additions and 210 deletions
+17
View File
@@ -0,0 +1,17 @@
export interface SourceImageModel {
_id: string
mime: string // MIME类型
hash: string // 图片md5值
size: number // 图片大小
label: string[] // 图片标签
img: ArrayBuffer // 图片二进制数据
created_at: Date
}
/**
* 图片标签
*/
export interface ImageLabel {
name: string // 标签名称
color: string // 标签颜色
}