package md type AgentContactInfo struct { Id string `json:"id" xorm:"not null pk autoincr INT(11)"` Uuid string `json:"uuid" xorm:"not null comment('站长id') index unique(IDX_UUID_TYPE) INT(11)"` AgentId string `json:"agent_id" xorm:"not null comment('代理id') unique(IDX_UUID_TYPE) INT(11)"` State string `json:"state" xorm:"not null default 0 comment('状态(0:待审核 1:审核通过 2:审核拒绝)') TINYINT(1)"` Memo string `json:"memo" xorm:"comment('备注 审核时填写的') VARCHAR(255)"` Name string `json:"name" xorm:"comment('联系人') VARCHAR(255)"` Email string `json:"email" xorm:"comment('邮箱地址') VARCHAR(255)"` Phone string `json:"phone" xorm:"comment('联系电话') VARCHAR(255)"` Address string `json:"address" xorm:"comment('联系地址') VARCHAR(255)"` }