Explorar o código

账户转项目相关接口

syh %!s(int64=4) %!d(string=hai) anos
pai
achega
d448e965f7

+ 0 - 1
jeecg-boot-module-system/src/main/java/org/jeecg/modules/ctop/controller/ProjectMemberController.java

@@ -116,7 +116,6 @@ public class ProjectMemberController {
                         projectMember.setMaxBid(project.getMaxBid());
                         projectMemberList.add(projectMember);
                     }
-
                 }
             }
             map.put("code", 0);

+ 2 - 2
jeecg-boot-module-system/src/main/java/org/jeecg/modules/wps/service/impl/WpsFileServiceImpl.java

@@ -173,8 +173,8 @@ public class WpsFileServiceImpl extends ServiceImpl<WpsFileMapper, WpsFile> impl
         FileDTO file = new FileDTO();
         BeanUtils.copyProperties(fileEntity,file);
         String url = fileEntity.getDownloadUrl();
-        url = URLEncoder.encode(url.replace(OSS_URL_PREFIX,""));
-        file.setDownload_url(OSS_URL_PREFIX+url);
+        url = URLEncoder.encode(url);
+        file.setDownload_url(url);
         file.setUser_acl(userAcl);
         file.setWatermark(watermark);
         result.put("file",file);

+ 1 - 1
module-toutiao/src/main/java/cn/com/ctop/toutiao/modules/material/service/impl/ByteDanceAdvertiserDataServiceImpl.java

@@ -170,7 +170,7 @@ public class ByteDanceAdvertiserDataServiceImpl implements IByteDanceAdvertiserD
             ByteDanceAdvertisePlan advertisePlan = new ByteDanceAdvertisePlan(dataObject, String.valueOf(token.getAccountId()));
             BigDecimal deepCpabid = dataObject.getBigDecimal("deep_cpabid");
             if (null != deepCpabid) {
-                advertisePlan.setDeepCpabid(deepCpabid);
+                advertisePlan.setDeepCpaBid(deepCpabid);
             }
             advertisePlanService.saveOrUpdate(advertisePlan);
         }