Некоторые проверки не удались
CI / test (push) Successful in 2m5s
Docker / Build and publish worker image (push) Failing after 31s
19 строки
288 B
Go
19 строки
288 B
Go
package models
|
|
|
|
import "rocketgit.ru/rsmon/worker/app/models/concerns"
|
|
|
|
// Payment provides functionality.
|
|
type Payment struct {
|
|
concerns.Model
|
|
|
|
AccountID int64 `json:"account_id"`
|
|
Account User `json:"-"`
|
|
|
|
Kind string
|
|
ExtID string
|
|
Amount int
|
|
|
|
concerns.Timestamped
|
|
Audited
|
|
}
|