| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- package service
- import (
- "Gwen/global"
- "Gwen/model"
- "gorm.io/gorm"
- )
- type AuditService struct {
- }
- func (as *AuditService) AuditConnList(page, pageSize uint, where func(tx *gorm.DB)) (res *model.AuditConnList) {
- res = &model.AuditConnList{}
- res.Page = int64(page)
- res.PageSize = int64(pageSize)
- tx := global.DB.Model(&model.AuditConn{})
- if where != nil {
- where(tx)
- }
- tx.Count(&res.Total)
- tx.Scopes(Paginate(page, pageSize))
- tx.Find(&res.AuditConns)
- return
- }
- // Create 创建
- func (as *AuditService) CreateAuditConn(u *model.AuditConn) error {
- res := global.DB.Create(u).Error
- return res
- }
- func (as *AuditService) DeleteAuditConn(u *model.AuditConn) error {
- return global.DB.Delete(u).Error
- }
- // Update 更新
- func (as *AuditService) UpdateAuditConn(u *model.AuditConn) error {
- return global.DB.Model(u).Updates(u).Error
- }
- // InfoByPeerIdAndConnId
- func (as *AuditService) InfoByPeerIdAndConnId(peerId string, connId int64) (res *model.AuditConn) {
- res = &model.AuditConn{}
- global.DB.Where("peer_id = ? and conn_id = ?", peerId, connId).First(res)
- return
- }
- // ConnInfoById
- func (as *AuditService) ConnInfoById(id uint) (res *model.AuditConn) {
- res = &model.AuditConn{}
- global.DB.Where("id = ?", id).First(res)
- return
- }
- // FileInfoById
- func (as *AuditService) FileInfoById(id uint) (res *model.AuditFile) {
- res = &model.AuditFile{}
- global.DB.Where("id = ?", id).First(res)
- return
- }
- func (as *AuditService) AuditFileList(page, pageSize uint, where func(tx *gorm.DB)) (res *model.AuditFileList) {
- res = &model.AuditFileList{}
- res.Page = int64(page)
- res.PageSize = int64(pageSize)
- tx := global.DB.Model(&model.AuditFile{})
- if where != nil {
- where(tx)
- }
- tx.Count(&res.Total)
- tx.Scopes(Paginate(page, pageSize))
- tx.Find(&res.AuditFiles)
- return
- }
- // CreateAuditFile
- func (as *AuditService) CreateAuditFile(u *model.AuditFile) error {
- res := global.DB.Create(u).Error
- return res
- }
- func (as *AuditService) DeleteAuditFile(u *model.AuditFile) error {
- return global.DB.Delete(u).Error
- }
- // Update 更新
- func (as *AuditService) UpdateAuditFile(u *model.AuditFile) error {
- return global.DB.Model(u).Updates(u).Error
- }
|