diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 8490745..146837a 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -8,6 +8,7 @@
+
diff --git a/cmd/model/artistinfo.go b/cmd/model/artistinfo.go
index dcf069a..c3e49e0 100644
--- a/cmd/model/artistinfo.go
+++ b/cmd/model/artistinfo.go
@@ -14,3 +14,7 @@ type ArtistInfo struct {
Remark2 string `gorm:"type:varchar(256) default ''" json:"remark2"`
State uint `gorm:"not null default:0" json:"state"`
}
+
+func (a ArtistInfo) TableName() string {
+ return "sys_artist_info"
+}