修改站班会日期查询
This commit is contained in:
@ -1,11 +1,10 @@
|
||||
package org.dromara.safety.domain.dto.teammeeting;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import java.time.LocalDate;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
@ -41,8 +40,7 @@ public class HseTeamMeetingQueryReq implements Serializable {
|
||||
/**
|
||||
* 开会时间
|
||||
*/
|
||||
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd")
|
||||
private Date meetingDate;
|
||||
private LocalDate meetingDate;
|
||||
|
||||
/**
|
||||
* 宣讲人
|
||||
|
@ -35,6 +35,7 @@ import org.springframework.beans.BeanUtils;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import java.util.*;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
@ -274,7 +275,7 @@ public class HseTeamMeetingServiceImpl extends ServiceImpl<HseTeamMeetingMapper,
|
||||
Long projectId = req.getProjectId();
|
||||
Long teamId = req.getTeamId();
|
||||
Long contractorId = req.getContractorId();
|
||||
Date meetingDate = req.getMeetingDate();
|
||||
LocalDate meetingDate = req.getMeetingDate();
|
||||
Long compereId = req.getCompereId();
|
||||
List<String> participantIdList = req.getParticipantIdList();
|
||||
String content = req.getContent();
|
||||
|
Reference in New Issue
Block a user