You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
2.4 KiB
46 lines
2.4 KiB
package models
|
|
|
|
import (
|
|
"github.com/ouxuanserver/osmanthuswine/src/core"
|
|
"time"
|
|
)
|
|
|
|
const ReWardHistoryTableName = TableNamePrefix + "reward_history"
|
|
|
|
//打赏历史
|
|
type RewardHistory struct {
|
|
Id int64 `json:"id" xorm:"not null pk autoincr INT(11)"`
|
|
UserOrderId int64 `json:"user_order_id" xorm:"not null default(0) comment('用户订单id') INT(11)"`
|
|
CustomerId int64 `json:"customer_id" xorm:"not null comment('客户id') INT(11)"`
|
|
RewardServerId int64 `json:"reward_server_id" xorm:"not null comment('打赏服务id') INT(11)"`
|
|
RehearsalId int64 `json:"rehearsal_id" xorm:"not null default(0) comment('彩排id/0正式') INT(11)"`
|
|
UserId int64 `json:"user_id" xorm:"not null comment('用户得id') INT(11)"`
|
|
User *User `json:"user" xorm:"-" description:"用户信息"`
|
|
Content string `json:"content" xorm:"not null comment('内容') text"`
|
|
Amount float64 `json:"amount" xorm:"not null default(0.0) comment('金额') DECIMAL"`
|
|
RewardAmount string `json:"reward_amount" xorm:"-" description:"同上, 字符串"`
|
|
Status int `json:"status" xorm:"not null default(0) comment('-1未支付 0未审核,1未通过,2已通过,3已推送') INT(11)"`
|
|
ReviewTime int64 `json:"review_time" xorm:"not null default(0) comment('审核时间') INT(11)"`
|
|
Version int64 `json:"version" xorm:"not null version comment('乐观锁') INT(11)"`
|
|
IsDelete bool `json:"is_delete" xorm:"not null default(0)"`
|
|
CreatedAt time.Time `json:"create_at" xorm:"not null default(CURRENT_TIMESTAMP) created comment('创建时间') TIMESTAMP"`
|
|
UpdatedAt time.Time `json:"update_at" xorm:"not null default(CURRENT_TIMESTAMP) updated comment('更新时间') TIMESTAMP"`
|
|
}
|
|
|
|
func (t *RewardHistory) TableName() string {
|
|
return ReWardHistoryTableName
|
|
}
|
|
|
|
func (t *RewardHistory) GetByUserOrderId(userOrderId int64) (bool, error) {
|
|
return core.GetXormAuto().Where("is_delete=0 and user_order_id=?", userOrderId).Get(t)
|
|
}
|
|
|
|
func (t *RewardHistory) UpdateStatus(id int64, status int) (int64, error) {
|
|
t.Status = status
|
|
return core.GetXormAuto().Where("id=?", id).Cols("status").Update(t)
|
|
}
|
|
|
|
func (t *RewardHistory) UpdateStatusByUserOrderId(userOrderId interface{}, status int) (int64, error) {
|
|
t.Status = status
|
|
return core.GetXormAuto().Where("is_delete=0 and user_order_id=?", userOrderId).Cols("status").Update(t)
|
|
}
|