修改下划线分隔的字段
This commit is contained in:
@@ -4,6 +4,6 @@ export default interface HitokotoModel {
|
||||
type: string
|
||||
from: string
|
||||
creator: string
|
||||
created_at: Date
|
||||
createdAt: Date
|
||||
number: number
|
||||
}
|
||||
@@ -7,8 +7,8 @@ export interface MusicModel {
|
||||
title?: string // 标题
|
||||
album?: string // 唱片集
|
||||
artist?: string // 艺术家
|
||||
lib_id: string // 歌单ID
|
||||
lyric_id: string // 歌词ID
|
||||
libId: string // 歌单ID
|
||||
lyricId: string // 歌词ID
|
||||
isEditing?: boolean // 是否正在编辑当前行
|
||||
}
|
||||
|
||||
@@ -20,7 +20,7 @@ export interface MusicLibModel {
|
||||
|
||||
export interface MusicLyricModel {
|
||||
_id?: string
|
||||
cloud_id?: number
|
||||
cloudId?: number
|
||||
name?: string
|
||||
lyric?: string
|
||||
}
|
||||
|
||||
@@ -5,5 +5,5 @@ export interface SourceImageModel {
|
||||
size: number // 图片大小
|
||||
label: string[] // 图片标签
|
||||
img: ArrayBuffer // 图片二进制数据
|
||||
created_at: Date
|
||||
createdAt: Date
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user