This commit is contained in:
jiangyong27 2025-03-27 20:54:09 +08:00
parent 096b29f2a3
commit dba365ff16
1 changed files with 7 additions and 0 deletions

View File

@ -85,6 +85,13 @@ func (p *Pay) Pay(corp *model.Corp, user *model.StaffUser, title, payType string
panic(config.ErrInternal.New().Append(err))
}
plog := new(model.StaffPayLog)
plog.Title = title
plog.PayType = realPayType
plog.StaffId = user.Id
plog.Amount = amount
dao.NewStaffPayLogDao().Create(plog)
global.SendMessage([]string{"jiangyong"}, strings.Join(message, "\n"))
}