广告平台(总站长使用)
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

medium_domain.go 471 B

il y a 4 mois
12345678
  1. package model
  2. type MediumDomain 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. }