package wechatcallback //企业微信回调记录 type CallbackLog struct { Id int64 `json:"id" gorm:"column:id;type:bigint(20);;primaryKey;unique;not null;autoIncrement;index"` MsgSignature string `json:"msgSignature" gorm:"column:msg_signature;type:varchar(255);not null;comment:组织名称"` TimeStamp int64 `json:"timestamp" gorm:"column:timestamp;type:bigint(20) unsigned;default:0;not null;comment:编辑时间"` Nonce string `json:"nonce" gorm:"column:nonce;type:varchar(255);not null;comment:组织名称"` Echostr string `json:"echostr" gorm:"column:echostr;type:text;not null;comment:组织名称"` Xmlstr string `json:"xmlstr" gorm:"column:xmlstr;type:text;comment:组织名称"` Jsonstr string `json:"jsonstr" gorm:"column:jsonstr;type:text;comment:组织名称"` AddTime int64 `json:"addtime" gorm:"column:addtime;type:bigint(20) unsigned;default:0;not null;comment:编辑时间"` Reqdata string `json:"reqdata" gorm:"column:reqdata;type:text;comment:组织名称"` } func (CallbackLog *CallbackLog) TableName() string { return "callback_log" }