广告平台(总站长使用)
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
470 B

  1. package model
  2. type AgentDomain struct {
  3. Domain string `json:"domain" xorm:"not null pk comment('绑定域名') VARCHAR(100)"`
  4. MediumId int `json:"medium_id" xorm:"not null comment('媒体id') index unique INT(11)"`
  5. IsOfficial int `json:"is_official" xorm:"not null default 1 comment('是否官方指定域名(1:是 2:否)') TINYINT(1)"`
  6. IsSsl int `json:"is_ssl" xorm:"not null default 0 comment('是否开启ssl:0否;1是') TINYINT(255)"`
  7. }