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.
|
- package md
-
- type AgentContactInfo struct {
- Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
- Uuid int `json:"uuid" xorm:"not null comment('站长id') index unique(IDX_UUID_TYPE) INT(11)"`
- AgentId int `json:"agent_id" xorm:"not null comment('代理id') unique(IDX_UUID_TYPE) INT(11)"`
- State int `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)"`
- }
|