1234567891011121314151617 |
- package service
- var (
- JyBxSeoDetailRoot *DetailRoot = &DetailRoot{}
- )
- type (
- DetailRoot struct {
- }
- )
- // GetDetail 根据seoId查询标讯详情
- // seoId 标讯seoId标识
- // isLogin 是否登录,未登录内容加密
- func (*DetailRoot) GetDetail(seoId string, isLogin bool) map[string]interface{} {
- return nil
- }
|