You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
3.0 KiB
Go

package system
import (
"pychr/global"
"pychr/model/common/request"
"pychr/model/system"
systemReq "pychr/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 uint64
// @return: sysOperationRecord system.SysOperationRecord, err error
func (operationRecordService *OperationRecordService) GetSysOperationRecord(id uint64) (sysOperationRecord system.SysOperationRecord, err error) {
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: list interface{}, total int64, err error
func (operationRecordService *OperationRecordService) GetSysOperationRecordInfoList(info systemReq.SysOperationRecordSearch) (list interface{}, total int64, err error) {
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
if err != nil {
return
}
err = db.Order("id desc").Limit(limit).Offset(offset).Preload("User").Find(&sysOperationRecords).Error
return sysOperationRecords, total, err
}