123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- package system
- import (
- "github.com/flipped-aurora/gin-vue-admin/server/global"
- "github.com/flipped-aurora/gin-vue-admin/server/model/common/request"
- "github.com/flipped-aurora/gin-vue-admin/server/model/system"
- systemReq "github.com/flipped-aurora/gin-vue-admin/server/model/system/request"
- )
- //@author: [granty1](https://github.com/granty1)
- //@function: CreateSysOperationRecord
- //@description: 创建记录
- //@param: sysOperationRecord model.SysOperationRecord
- //@return: err error
- type OperationRecordService struct {
- }
- func (operationRecordService *OperationRecordService) CreateSysOperationRecord(sysOperationRecord system.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 (operationRecordService *OperationRecordService) DeleteSysOperationRecordByIds(ids request.IdsReq) (err error) {
- err = global.GVA_DB.Delete(&[]system.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 (operationRecordService *OperationRecordService) DeleteSysOperationRecord(sysOperationRecord system.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 (operationRecordService *OperationRecordService) GetSysOperationRecord(id uint) (err error, sysOperationRecord system.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 systemReq.SysOperationRecordSearch
- //@return: err error, list interface{}, total int64
- func (operationRecordService *OperationRecordService) GetSysOperationRecordInfoList(info systemReq.SysOperationRecordSearch) (err error, list interface{}, total int64) {
- limit := info.PageSize
- offset := info.PageSize * (info.Page - 1)
- // 创建db
- db := global.GVA_DB.Model(&system.SysOperationRecord{})
- var sysOperationRecords []system.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
- }
|