| | |
| | | * 可容纳人数
|
| | | */
|
| | | @Excel(name = "可容纳人数")
|
| | | private int conPeople;
|
| | | private Integer conPeople;
|
| | | /**
|
| | | * 参与人数
|
| | | */
|
| | | @Excel(name = "参与人数")
|
| | | private int partPeople;
|
| | | private Integer partPeople;
|
| | | /**
|
| | | * 申请人
|
| | | */
|
| | |
| | | * 是否摆放水牌
|
| | | */
|
| | | @Excel(name = "是否摆放水牌")
|
| | | private int isPlacebrand;
|
| | | private Integer isPlacebrand;
|
| | | /**
|
| | | * 联系人
|
| | | */
|
| | |
| | | * 状态
|
| | | */
|
| | | @Excel(name = "状态")
|
| | | private int statu;
|
| | | private Integer statu;
|
| | | /**
|
| | | * 生成时间
|
| | | */
|
| | |
| | | private LambdaQueryWrapper<LiveStreaming> buildCondition(LiveStreaming liveStreaming) { |
| | | LambdaQueryWrapper<LiveStreaming> lqw = new LambdaQueryWrapper<>(); |
| | | // lqw.in(LiveStreaming::getFamilyId,familyIdList); |
| | | lqw.orderByDesc(LiveStreaming::getCreateTime); |
| | | lqw.orderByDesc(LiveStreaming::getId); |
| | | lqw.like(StringUtils.isNotEmpty(liveStreaming.getTitle()), LiveStreaming::getTitle, liveStreaming.getTitle()) |
| | | .like(StringUtils.isNotEmpty(liveStreaming.getApplyPerson()),LiveStreaming::getApplyPerson,liveStreaming.getApplyPerson()) |
| | | .like(StringUtils.isNotEmpty(liveStreaming.getContactPerson()),LiveStreaming::getContactPerson,liveStreaming.getContactPerson()); |
| | |
| | | private LambdaQueryWrapper<LiveStreaming> buildCondition(LiveStreaming liveStreaming) { |
| | | LambdaQueryWrapper<LiveStreaming> lqw = new LambdaQueryWrapper<>(); |
| | | // lqw.in(LiveStreaming::getFamilyId,familyIdList); |
| | | lqw.orderByDesc(LiveStreaming::getCreateTime); |
| | | lqw.orderByDesc(LiveStreaming::getId); |
| | | lqw.like(StringUtils.isNotEmpty(liveStreaming.getTitle()), LiveStreaming::getTitle, liveStreaming.getTitle()) |
| | | .like(StringUtils.isNotEmpty(liveStreaming.getApplyPerson()),LiveStreaming::getApplyPerson,liveStreaming.getApplyPerson()) |
| | | .like(StringUtils.isNotEmpty(liveStreaming.getContactPerson()),LiveStreaming::getContactPerson,liveStreaming.getContactPerson()) |
| | |
| | | private LambdaQueryWrapper<Meeting> buildCondition(Meeting meeting) {
|
| | | LambdaQueryWrapper<Meeting> lqw = new LambdaQueryWrapper<>();
|
| | | // lqw.in(ZfDoctor::getFamilyId,familyIdList);
|
| | | lqw.orderByDesc(Meeting::getCreateTime);
|
| | | lqw.orderByDesc(Meeting::getId);
|
| | | lqw.like(StringUtils.isNotEmpty(meeting.getPlace()), Meeting::getPlace, meeting.getPlace())
|
| | | .like(StringUtils.isNotEmpty(meeting.getApplyApart()), Meeting::getApplyApart, meeting.getApplyApart());
|
| | | // .like(Integer.valueOf(meeting.getApplyPerson())!=null, Meeting::getApplyPerson, meeting.getApplyPerson());
|
| | |
| | | private LambdaQueryWrapper<Meeting> buildCondition(Meeting meeting) {
|
| | | LambdaQueryWrapper<Meeting> lqw = new LambdaQueryWrapper<>();
|
| | | // lqw.in(ZfDoctor::getFamilyId,familyIdList);
|
| | | lqw.orderByDesc(Meeting::getCreateTime);
|
| | | lqw.orderByDesc(Meeting::getId);
|
| | | lqw.like(StringUtils.isNotEmpty(meeting.getPlace()), Meeting::getPlace, meeting.getPlace())
|
| | | .like(StringUtils.isNotEmpty(meeting.getApplyApart()), Meeting::getApplyApart, meeting.getApplyApart());
|
| | | // .like(Integer.valueOf(meeting.getApplyPerson())!=null, Meeting::getApplyPerson, meeting.getApplyPerson());
|
| | |
| | | //操作后加入日志
|
| | | ZfLog zfLog = new ZfLog();
|
| | | zfLog.setUpdateTime(LocalDateTime.now());
|
| | | zfLog.setModule("会议");
|
| | | zfLog.setModule("会议申请");
|
| | | zfLog.setUpdater(zInfoUserService.getMyself().getNickName());
|
| | | zfLogService.save(zfLog);
|
| | | // System.out.println("===================================="+meeting);
|