type AutoReplyCard struct {
ID uint `gorm:"primaryKey"`
Status uint8 `gorm:"comment:状态"`
IsEnable bool `gorm:"comment:是否启用"`
EnableFailReason *string `gorm:"comment:启用失败原因"`
IesAvatarURL string `gorm:"comment:企业号头像"`
IesNickName string `gorm:"comment:企业号昵称"`
IesUserID int64 `gorm:"comment:企业号USER ID"`
IesCompanyName string `gorm:"comment:企业号所属企业名称"`
CardCover string `gorm:"comment:卡片封面"`
CardTitle string `gorm:"comment:卡片标题"`
CardDescription string `gorm:"comment:卡片简介"`
JumpLink string `gorm:"comment:跳转链接"`
UseVisitReply bool `gorm:"default:false;comment:是否使用访客回复"`
WelcomeMessage *string `gorm:"comment:欢迎语"`
UseKeywordReply bool `gorm:"default:false;comment:是否使用关键词回复"`
ReplyKeywords *datatypes.JSON `gorm:"type:json;comment:关键词回复"`
IsAutoRevoke bool `gorm:"default:false;comment:是否开启自动撤回"`
RevokeSeconds uint `gorm:"default:0;comment:撤回秒数"`
SendCount int64
LastSendTime *time.Time `gorm:"comment:最后发送时间"`
DeletedAt *time.Time `gorm:"comment:删除时间"`
CreatedAt time.Time `gorm:"comment:创建时间"`
UpdatedAt time.Time `gorm:"comment:更新时间"`
}
JumpLink为跳转链接URL,可以跳转任何你想要的第三方APP,注意,此处需要白名单域名URL配合跳转落地页使用