1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- package service
- import (
- "gin-vue-admin/global"
- "gin-vue-admin/model"
- "gin-vue-admin/model/request"
- )
- //@author: [granty1](https://github.com/granty1)
- //@function: CreateSysOperationRecord
- //@description: 创建记录
- //@param: sysOperationRecord model.SysOperationRecord
- //@return: err error
- func CreateSysOperationRecord(sysOperationRecord model.SysOperationRecord) (err error) {
- err = global.GVA_DB.Create(&sysOperationRecord).Error
- return err
- }
- //@author: [granty1](https://github.com/granty1)
- //@author: [piexlmax](https://github.com/piexlmax)
- //@function: DeleteSysOperationRecordByIds
- //@description: 批量删除记录
- //@param: ids request.IdsReq
- //@return: err error
- func DeleteSysOperationRecordByIds(ids request.IdsReq) (err error) {
- err = global.GVA_DB.Delete(&[]model.SysOperationRecord{}, "id in (?)", ids.Ids).Error
- return err
- }
- //@author: [granty1](https://github.com/granty1)
- //@function: DeleteSysOperationRecord
- //@description: 删除操作记录
- //@param: sysOperationRecord model.SysOperationRecord
- //@return: err error
- func DeleteSysOperationRecord(sysOperationRecord model.SysOperationRecord) (err error) {
- err = global.GVA_DB.Delete(&sysOperationRecord).Error
- return err
- }
- //@author: [granty1](https://github.com/granty1)
- //@function: DeleteSysOperationRecord
- //@description: 根据id获取单条操作记录
- //@param: id uint
- //@return: err error, sysOperationRecord model.SysOperationRecord
- func GetSysOperationRecord(id uint) (err error, sysOperationRecord model.SysOperationRecord) {
- err = global.GVA_DB.Where("id = ?", id).First(&sysOperationRecord).Error
- return
- }
- //@author: [granty1](https://github.com/granty1)
- //@author: [piexlmax](https://github.com/piexlmax)
- //@function: GetSysOperationRecordInfoList
- //@description: 分页获取操作记录列表
- //@param: info request.SysOperationRecordSearch
- //@return: err error, list interface{}, total int64
- func GetSysOperationRecordInfoList(info request.SysOperationRecordSearch) (err error, list interface{}, total int64) {
- limit := info.PageSize
- offset := info.PageSize * (info.Page - 1)
- // 创建db
- db := global.GVA_DB.Model(&model.SysOperationRecord{})
- var sysOperationRecords []model.SysOperationRecord
- // 如果有条件搜索 下方会自动创建搜索语句
- if info.Method != "" {
- db = db.Where("method = ?", info.Method)
- }
- if info.Path != "" {
- db = db.Where("path LIKE ?", "%"+info.Path+"%")
- }
- if info.Status != 0 {
- db = db.Where("status = ?", info.Status)
- }
- err = db.Count(&total).Error
- err = db.Order("id desc").Limit(limit).Offset(offset).Preload("User").Find(&sysOperationRecords).Error
- return err, sysOperationRecords, total
- }
|