作者 yangfu

修改 机会列表

@@ -499,7 +499,7 @@ func ClearEmptyForm(inputFormList []*Form) (FormList []*Form) { @@ -499,7 +499,7 @@ func ClearEmptyForm(inputFormList []*Form) (FormList []*Form) {
499 type Speech struct { 499 type Speech struct {
500 Path string `json:"path"` 500 Path string `json:"path"`
501 Duration int `json:"duration"` 501 Duration int `json:"duration"`
502 - VideoId string `json:"videoId"` 502 + VideoId string `json:"-"` //videoId
503 } 503 }
504 504
505 //图片 505 //图片
@@ -507,7 +507,7 @@ type Picture struct { @@ -507,7 +507,7 @@ type Picture struct {
507 Path string `json:"path"` 507 Path string `json:"path"`
508 W int `json:"w"` 508 W int `json:"w"`
509 H int `json:"h"` 509 H int `json:"h"`
510 - ImageId string `json:"imageId"` 510 + ImageId string `json:"-"` //imageId
511 } 511 }
512 512
513 //视频 513 //视频
@@ -515,7 +515,7 @@ type Video struct { @@ -515,7 +515,7 @@ type Video struct {
515 Path string `json:"path"` 515 Path string `json:"path"`
516 Cover Cover `json:"cover"` //封面 516 Cover Cover `json:"cover"` //封面
517 Duration int `json:"duration"` 517 Duration int `json:"duration"`
518 - VideoId string `json:"videoId"` 518 + VideoId string `json:"-"` //videoId
519 } 519 }
520 520
521 //审批配置 521 //审批配置