Browse Source

用户反馈

master
huangjiajun 1 month ago
parent
commit
afaf570d44
2 changed files with 15 additions and 10 deletions
  1. +13
    -8
      src/model/advertising_callback.go
  2. +2
    -2
      src/model/user_feedback.go

+ 13
- 8
src/model/advertising_callback.go View File

@@ -1,12 +1,17 @@
package model

import (
"time"
)

type AdvertisingCallback struct {
Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
Platform string `json:"platform" xorm:"unique(platform) VARCHAR(255)"`
Oid string `json:"oid" xorm:"unique(platform) VARCHAR(255)"`
Uid int `json:"uid" xorm:"default 0 INT(11)"`
Extra string `json:"extra" xorm:"VARCHAR(255)"`
SpaceId string `json:"space_id" xorm:"VARCHAR(255)"`
Amount string `json:"amount" xorm:"VARCHAR(255)"`
IsRun int `json:"is_run" xorm:"default 0 INT(1)"`
Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
Platform string `json:"platform" xorm:"unique(platform) VARCHAR(255)"`
Oid string `json:"oid" xorm:"unique(platform) VARCHAR(255)"`
Uid int `json:"uid" xorm:"default 0 INT(11)"`
Extra string `json:"extra" xorm:"VARCHAR(255)"`
SpaceId string `json:"space_id" xorm:"VARCHAR(255)"`
Amount string `json:"amount" xorm:"VARCHAR(255)"`
IsRun int `json:"is_run" xorm:"default 0 INT(1)"`
CreateAt time.Time `json:"create_at" xorm:"DATETIME"`
}

+ 2
- 2
src/model/user_feedback.go View File

@@ -5,9 +5,9 @@ import (
)

type UserFeedback struct {
Id int `json:"id" xorm:"not null pk default 0 INT(11)"`
Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
Uid int `json:"uid" xorm:"default 0 INT(11)"`
Type string `json:"type" xorm:"default '0' comment('问题类型') VARCHAR(255)"`
Type string `json:"type" xorm:"default '' comment('问题类型') VARCHAR(255)"`
Extra string `json:"extra" xorm:"comment('api请求头内容') TEXT"`
Content string `json:"content" xorm:"comment('问题内容') VARCHAR(5000)"`
Img string `json:"img" xorm:"comment('图片 [""]') VARCHAR(5000)"`


Loading…
Cancel
Save