广告平台(总站长使用)
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.

agent_domain.go 470 B

4 months ago
12345678
  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. }