广告平台(站长下代理使用)
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

agent_contact_info.go 825 B

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