@ -16,7 +16,6 @@ type AuctionCtl struct {
}
// 竞拍动作
// todo: 进行替换
func (t *AuctionCtl) Auction() {
auctionId := t.MustGetInt("auction_activity_id")
totalMoney := t.MustGetDouble("total_money")
@ -65,7 +65,6 @@ func (t *RewardCtl) WaitReview() {
t.CheckErr(err)
t.Assert(exist, code.MSG_REWARD_NOT_EXIST, "打赏不存在")
//// todo: 检查订单
go bully_reward_service.CheckRewardStatus(server.Id, activity.ArchId)
result, err := bully_reward_service.GetRewardReview(server.Id, activity.RehearsalId, activity.ArchId)
@ -8,7 +8,6 @@ import (
const UserRedPackTableName = TableNamePrefix + "user_red_pack"
// todo: 红包号码
type UserRedPack struct {
Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
MchBillno string `json:"mch_billno" xorm:"not null default('') comment('商户订单号') VARCHAR(28)"`