Migrate all methods in the model package to the service package

This commit is contained in:
Granty1
2020-04-08 11:07:27 +08:00
parent 2c35adaffc
commit 5d222585dd
49 changed files with 1348 additions and 1261 deletions

View File

@@ -1,7 +1,6 @@
package model
import (
"gin-vue-admin/global"
"github.com/jinzhu/gorm"
)
@@ -11,52 +10,4 @@ type ExaFileUploadAndDownload struct {
Url string `json:"url"`
Tag string `json:"tag"`
Key string `json:"key"`
}
// @title Upload
// @description 删除文件切片记录
// @auth 2020/04/05 20:22
// @return error
func (f *ExaFileUploadAndDownload) Upload() error {
err := global.GVA_DB.Create(f).Error
return err
}
// @title DeleteFile
// @description 删除文件切片记录
// @auth 2020/04/05 20:22
// @return error
func (f *ExaFileUploadAndDownload) DeleteFile() error {
err := global.GVA_DB.Where("id = ?", f.ID).Unscoped().Delete(f).Error
return err
}
// @title FindFile
// @description 删除文件切片记录
// @auth 2020/04/05 20:22
// @return error
func (f *ExaFileUploadAndDownload) FindFile() (error, ExaFileUploadAndDownload) {
var file ExaFileUploadAndDownload
err := global.GVA_DB.Where("id = ?", f.ID).First(&file).Error
return err, file
}
// @title GetInfoList
// @description 分页获取数据
// @auth 2020/04/05 20:22
// @param info PageInfo
// @return err error
// @return list error
// @return total error
func (f *ExaFileUploadAndDownload) GetInfoList(info PageInfo) (err error, list interface{}, total int) {
limit := info.PageSize
offset := info.PageSize * (info.Page - 1)
db := global.GVA_DB
if err != nil {
return
} else {
var fileLists []ExaFileUploadAndDownload
err = db.Limit(limit).Offset(offset).Order("updated_at desc").Find(&fileLists).Error
return err, fileLists, total
}
}
}