查看我的项目, 修改配置

This commit is contained in:
小久哥
2022-06-11 16:43:35 +08:00
parent cc0c7f374e
commit f0084754ca
3 changed files with 11 additions and 7 deletions
@@ -25,13 +25,8 @@ public class WxCpConfigure {
public WxCpService wxCpService(){
WxCpDefaultConfigImpl config = new WxCpDefaultConfigImpl();
// config.setCorpId("wwb9f9734e8e124761");
// config.setCorpSecret("B2bdszjVvby6jfbZf-TQOGeslpOEzLFUYWHldYxtkWA");
config.setCorpId("ww17f8d10783494584");
config.setCorpSecret("i5t-rh8bXeNCgihcYPrG9ZPpWkivzPJ69sv570osk6I");
config.setCorpId("wwb9f9734e8e124761");
config.setCorpSecret("B2bdszjVvby6jfbZf-TQOGeslpOEzLFUYWHldYxtkWA");
WxCpServiceImpl wxCpService = new WxCpServiceImpl();
wxCpService.setWxCpConfigStorage(config);
@@ -22,4 +22,7 @@ public class ProjectPageDTO extends PageDTO {
@ApiModelProperty("true 草稿 false已发布")
private Boolean draft;
@ApiModelProperty("true查看我参与的项目")
private Boolean myProject;
}
@@ -29,6 +29,7 @@ import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.github.pagehelper.PageInfo;
import com.zsw.base.R;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import org.springframework.validation.annotation.Validated;
@@ -55,6 +56,7 @@ import static cn.iocoder.yudao.module.farm.enums.ErrorCodeConstants.*;
*/
@Service
@Validated
@Slf4j
public class ProjectServiceImpl implements ProjectService {
@Resource
@@ -151,6 +153,10 @@ public class ProjectServiceImpl implements ProjectService {
queryWrapperX.eqIfPresent(ProjectDO::getCreator, getLoginUserId());
}
if (ObjectUtil.isNotEmpty(pageDTO.getMyProject()) && pageDTO.getMyProject()){
//查看我参与的项目
queryWrapperX.last(" and JSON_CONTAINS(members, '"+ getLoginUserId()+"')");
}
List<ProjectDO> list = projectMapper.selectList(queryWrapperX);
if (ObjectUtil.isEmpty(list)){