|
@@ -222,7 +222,7 @@ func SendBroadcastMsg(broadcastId, userId int) (errMsg string, err error) {
|
|
|
}
|
|
|
|
|
|
// CreateVoiceBroadcast 新增语音播报
|
|
|
-func CreateVoiceBroadcast(sectionId, varietyId, authorId int, broadcastName, sectionName, varietyName, author, voiceSeconds, voiceSize, voiceUrl, imgs string, userInfo user.UserInfo) (resp response.Broadcast, err error) {
|
|
|
+func CreateVoiceBroadcast(sectionId, varietyId, authorId int, broadcastName, sectionName, varietyName, author, voiceSeconds, voiceSize, voiceUrl, imgs, centralArguments string, userInfo user.UserInfo) (resp response.Broadcast, err error) {
|
|
|
nowTime := time.Now().Local()
|
|
|
if userInfo.UserID > 0 {
|
|
|
authorId = int(userInfo.UserID)
|
|
@@ -240,6 +240,7 @@ func CreateVoiceBroadcast(sectionId, varietyId, authorId int, broadcastName, sec
|
|
|
VoiceUrl: voiceUrl,
|
|
|
VoicePlaySeconds: voiceSeconds,
|
|
|
VoiceSize: voiceSize,
|
|
|
+ CentralArguments: centralArguments,
|
|
|
CreateTime: nowTime.Format(utils.FormatDateTime),
|
|
|
ModifyTime: nowTime.Format(utils.FormatDateTime),
|
|
|
}
|
|
@@ -273,7 +274,7 @@ func CreateVoiceBroadcast(sectionId, varietyId, authorId int, broadcastName, sec
|
|
|
}
|
|
|
|
|
|
// EditVoiceBroadcast 编辑语音播报
|
|
|
-func EditVoiceBroadcast(broadcastId, sectionId, varietyId, authorId int, broadcastName, sectionName, varietyName, author, voiceSeconds, voiceSize, voiceUrl, imgs string, userInfo user.UserInfo) (resp response.Broadcast, err error) {
|
|
|
+func EditVoiceBroadcast(broadcastId, sectionId, varietyId, authorId int, broadcastName, sectionName, varietyName, author, voiceSeconds, voiceSize, voiceUrl, imgs, centralArguments string, userInfo user.UserInfo) (resp response.Broadcast, err error) {
|
|
|
if broadcastId <= 0 {
|
|
|
return
|
|
|
}
|
|
@@ -284,7 +285,7 @@ func EditVoiceBroadcast(broadcastId, sectionId, varietyId, authorId int, broadca
|
|
|
}
|
|
|
nowTime := time.Now().Local()
|
|
|
updateCols := []string{"BroadcastName", "SectionId", "SectionName", "VarietyId", "VarietyName", "AuthorId", "Author", "VoiceUrl",
|
|
|
- "VoicePlaySeconds", "VoiceSize", "ModifyTime"}
|
|
|
+ "VoicePlaySeconds", "VoiceSize", "ModifyTime", "CentralArguments"}
|
|
|
item.BroadcastName = broadcastName
|
|
|
item.SectionId = sectionId
|
|
|
item.SectionName = sectionName
|
|
@@ -296,6 +297,7 @@ func EditVoiceBroadcast(broadcastId, sectionId, varietyId, authorId int, broadca
|
|
|
item.VoicePlaySeconds = voiceSeconds
|
|
|
item.VoiceSize = voiceSize
|
|
|
item.ModifyTime = nowTime.Format(utils.FormatDateTime)
|
|
|
+ item.CentralArguments = centralArguments
|
|
|
// 图片
|
|
|
imgList := make([]*voice_broadcast_img.YbVoiceBroadcastImg, 0)
|
|
|
if imgs != "" {
|