12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package system
- import (
- "server/dao"
- "server/model/common/request"
- systemReq "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 dao.SysOperationRecord) (err error) {
- return sysOperationRecord.CreateSysOperationRecord()
- }
- //@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) error {
- return dao.DeleteSysOperationRecordByIds(ids.Ids)
- }
- //@author: [granty1](https://github.com/granty1)
- //@function: DeleteSysOperationRecord
- //@description: 删除操作记录
- //@param: sysOperationRecord model.SysOperationRecord
- //@return: err error
- func (operationRecordService *OperationRecordService) DeleteSysOperationRecord(sysOperationRecord dao.SysOperationRecord) error {
- return sysOperationRecord.DeleteSysOperationRecord()
- }
- //@author: [granty1](https://github.com/granty1)
- //@function: DeleteSysOperationRecord
- //@description: 根据id获取单条操作记录
- //@param: id uint
- //@return: sysOperationRecord system.SysOperationRecord, err error
- func (operationRecordService *OperationRecordService) GetSysOperationRecord(id uint) (dao.SysOperationRecord, error) {
- return dao.GetSysOperationRecord(id)
- }
- //@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)
- return info.SysOperationRecord.GetSysOperationRecordInfoList(limit, offset)
- }
|