互动
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.

15 lines
531 B

5 years ago
  1. package models
  2. import (
  3. "time"
  4. )
  5. //订单抽奖样式
  6. type OrderDrawStyle struct {
  7. Id int64 `json:"id"`
  8. StyleName string `json:"style_name" description:"样式的名字"`
  9. StyleImageUrl string `json:"style_image_url" description:"样式的图片地址"`
  10. IsDelete bool `json:"is_delete" xorm:"default(0)" description:"是否删除"`
  11. CreatedAt time.Time `json:"-" xorm:"created" description:"创建时间"`
  12. UpdatedAt time.Time `json:"-" xorm:"updated" description:"更新时间"`
  13. }