diff --git a/src/model/advertising_space.go b/src/model/advertising_space.go index a16a566..4e4997d 100644 --- a/src/model/advertising_space.go +++ b/src/model/advertising_space.go @@ -1,7 +1,7 @@ package model type AdvertisingSpace struct { - Id int `json:"id" xorm:"not null pk INT(11)"` + Id int `json:"id" xorm:"not null pk autoincr INT(11)"` Name string `json:"name" xorm:"VARCHAR(255)"` Kind int `json:"kind" xorm:"not null default 1 comment('广告类型(1:开屏广告 2:插屏广告 3:激励视频 4:信息流广告)') TINYINT(1)"` Info string `json:"info" xorm:"TEXT"`