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.
30 lines
971 B
30 lines
971 B
package models
|
|
|
|
import (
|
|
"git.ouxuan.net/tommy/osmanthuswine/src/core"
|
|
)
|
|
|
|
const OrderDrawActivityTableName = TableNamePrefix + "order_draw_activity"
|
|
|
|
//订单抽奖活动
|
|
type OrderDrawActivity struct {
|
|
Model `xorm:"extends"`
|
|
|
|
ActivityId int `json:"activity_id" description:"活动的id"`
|
|
CreatorId int `json:"creator_id"`
|
|
OrderDrawActivityName string `json:"order_draw_activity_name"`
|
|
OrderDrawRule *OrderDrawRule `json:"order_draw_rule" xorm:"-"`
|
|
MoreAreaMode string `json:"more_area_mode"`
|
|
IsSuccess bool `json:"is_success"`
|
|
}
|
|
|
|
func (t *OrderDrawActivity) TableName() string {
|
|
return OrderDrawActivityTableName
|
|
}
|
|
|
|
func GetODActivityIdsByActivityId(aid int) ([]int, error) {
|
|
orderIds := make([]int, 0)
|
|
err := core.GetXormAuto().Table(new(OrderDrawActivity)).Select("id").
|
|
Where("is_delete=0 and activity_id=?", aid).Find(&orderIds)
|
|
return orderIds, err
|
|
}
|