...
|
...
|
@@ -499,7 +499,7 @@ func ClearEmptyForm(inputFormList []*Form) (FormList []*Form) { |
|
|
type Speech struct {
|
|
|
Path string `json:"path"`
|
|
|
Duration int `json:"duration"`
|
|
|
VideoId string `json:"videoId"`
|
|
|
VideoId string `json:"-"` //videoId
|
|
|
}
|
|
|
|
|
|
//图片
|
...
|
...
|
@@ -507,7 +507,7 @@ type Picture struct { |
|
|
Path string `json:"path"`
|
|
|
W int `json:"w"`
|
|
|
H int `json:"h"`
|
|
|
ImageId string `json:"imageId"`
|
|
|
ImageId string `json:"-"` //imageId
|
|
|
}
|
|
|
|
|
|
//视频
|
...
|
...
|
@@ -515,7 +515,7 @@ type Video struct { |
|
|
Path string `json:"path"`
|
|
|
Cover Cover `json:"cover"` //封面
|
|
|
Duration int `json:"duration"`
|
|
|
VideoId string `json:"videoId"`
|
|
|
VideoId string `json:"-"` //videoId
|
|
|
}
|
|
|
|
|
|
//审批配置
|
...
|
...
|
|