Ver código fonte

Merge remote-tracking branch 'origin/master'

master
CMM 1 ano atrás
pai
commit
ac04e471fa
3 arquivos alterados com 9 adições e 2 exclusões
  1. +4
    -0
      pmapi/src/main/java/com/ningdatech/pmapi/meeting/entity/vo/MeetingDetailBasicVO.java
  2. +3
    -1
      pmapi/src/main/java/com/ningdatech/pmapi/projectlib/manage/ProjectLibManage.java
  3. +2
    -1
      pmapi/src/main/java/com/ningdatech/pmapi/sys/manage/NotifyManage.java

+ 4
- 0
pmapi/src/main/java/com/ningdatech/pmapi/meeting/entity/vo/MeetingDetailBasicVO.java Ver arquivo

@@ -43,6 +43,10 @@ public class MeetingDetailBasicVO {
@JSONField(format = "yyyy-MM-dd HH:mm")
private LocalDateTime startTime;

@ApiModelProperty("结束时间")
@JSONField(format = "yyyy-MM-dd HH:mm")
private LocalDateTime endTime;

@ApiModelProperty("评委到场时间")
@JSONField(format = "yyyy-MM-dd HH:mm")
private LocalDateTime judgesAttendanceTime;


+ 3
- 1
pmapi/src/main/java/com/ningdatech/pmapi/projectlib/manage/ProjectLibManage.java Ver arquivo

@@ -234,9 +234,11 @@ public class ProjectLibManage {
case VISITOR:
//访客可以看全市的
break;
case DASHBOARD:
break;
default:
//没有权限的话 就让它查不到
query.eq(Project::getId,"NULL");
query.eq(Project::getId,0L);
break;
}
return loginUser;


+ 2
- 1
pmapi/src/main/java/com/ningdatech/pmapi/sys/manage/NotifyManage.java Ver arquivo

@@ -39,7 +39,8 @@ public class NotifyManage {
.eq(Objects.nonNull(notifyListReq.getReaded()), Notify::getReaded, notifyListReq.getReaded())
.eq(Notify::getUserId, userId)
.like(Objects.nonNull(notifyListReq.getTitle()), Notify::getTitle, notifyListReq.getTitle())
.eq(Objects.nonNull(notifyListReq.getType()), Notify::getType, notifyListReq.getType());
.eq(Objects.nonNull(notifyListReq.getType()), Notify::getType, notifyListReq.getType())
.orderByDesc(Notify::getCreateTime);
notifyService.page(page,wrapper);
if(page.getTotal() == 0L){
return PageVo.empty();


Carregando…
Cancelar
Salvar