Compare commits
No commits in common. "fc82043cb544efbbbe3b84412090d331b417cf25" and "56d9fa35f73909efa5c371f73419ce83768e2cd1" have entirely different histories.
fc82043cb5
...
56d9fa35f7
|
|
@ -2,7 +2,6 @@ package com.playlet.web.controller.system;
|
|||
|
||||
import java.util.List;
|
||||
|
||||
import com.playlet.common.utils.StringUtils;
|
||||
import com.playlet.system.domain.PlayletPublicAccount;
|
||||
import com.playlet.system.service.IPlayletItemService;
|
||||
import com.playlet.system.service.IPlayletPublicAccountService;
|
||||
|
|
@ -147,9 +146,6 @@ public class PlayletPublicDetailController extends BaseController
|
|||
@ResponseBody
|
||||
public AjaxResult editSave(PlayletPublicDetail playletPublicDetail)
|
||||
{
|
||||
if("02".equals(playletPublicDetail.getType()) && StringUtils.isNotEmpty(playletPublicDetail.getPdfUrl())){
|
||||
playletPublicDetail.setContent(playletPublicDetail.getPdfUrl());
|
||||
}
|
||||
return toAjax(playletPublicDetailService.updatePlayletPublicDetail(playletPublicDetail));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -172,7 +172,7 @@ aliyun:
|
|||
access-key-secret: BbxcqZjvx6yupekOLUbKDMINhbOioa
|
||||
bucket-name: qiepian2024
|
||||
endpoint: http://oss-cn-shenzhen.aliyuncs.com
|
||||
url-prefix: https://qiepian2024.oss-cn-shenzhen.aliyuncs.com/
|
||||
url-prefix: http://qiepian2024.oss-cn-shenzhen.aliyuncs.com/
|
||||
|
||||
#阿里云短信验证码配置
|
||||
sms:
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">原创篇数:</label>
|
||||
<label class="col-sm-3 control-label">原创片数:</label>
|
||||
<div class="col-sm-8">
|
||||
<input name="originalContentCount" th:field="*{originalContentCount}" class="form-control" type="text">
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -65,9 +65,9 @@ public class PlayletPublicAccount extends BaseEntity
|
|||
@ApiModelProperty(value = "地址")
|
||||
private String address;
|
||||
|
||||
/** 原创篇数 */
|
||||
@Excel(name = "原创篇数")
|
||||
@ApiModelProperty(value = "原创篇数")
|
||||
/** 原创片数 */
|
||||
@Excel(name = "原创片数")
|
||||
@ApiModelProperty(value = "原创片数")
|
||||
private Long originalContentCount;
|
||||
|
||||
/** 关注人数 */
|
||||
|
|
|
|||
Loading…
Reference in New Issue