You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package models
-
- import "code.gitea.io/gitea/modules/timeutil"
-
- const (
- IncreaseAccountBalance = "increase"
- DecreaseAccountBalance = "decrease"
- )
-
- type PointAccountLog struct {
- ID int64 `xorm:"pk autoincr"`
- AccountCode string `xorm:"INDEX NOT NULL"`
- UserId int64 `xorm:"INDEX NOT NULL"`
- Type string `xorm:"NOT NULL"`
- SourceId string `xorm:"INDEX NOT NULL"`
- PointsAmount int64 `xorm:"NOT NULL"`
- BalanceBefore int64 `xorm:"NOT NULL"`
- BalanceAfter int64 `xorm:"NOT NULL"`
- AccountVersion int64 `xorm:"NOT NULL"`
- CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
- }
|