Files
jx-callback/business/jxstore/vendor/partner.go
苏尹岚 5a7e7a0ab7 aa
2021-03-24 14:33:35 +08:00

15 lines
268 B
Go

package vendor
import (
"git.rosy.net.cn/jx-callback/business/jxutils/jxcontext"
)
const (
LinkTypeWeiXinMini = 1 //微信小程序
LinkTypeH5 = 2 //H5
)
type UnionInterface interface {
ShareUnionLink(ctx *jxcontext.Context, linkType int) (err error)
}