|
|
|
@@ -255,8 +255,9 @@ public class DmMeetingInnerApiController extends BaseApiController { |
|
|
|
@InnerAuth |
|
|
|
@PostMapping(value = "/lists-all") |
|
|
|
public JSONObject listAllInner(@RequestParam("dateStr") String dateStr, @RequestParam("spaceId") Long spaceId) { |
|
|
|
String date = dateStr.substring(0, 10); |
|
|
|
String time = dateStr.substring(11); |
|
|
|
String date = dateStr.substring(0, 10); |
|
|
|
String time = dateStr.substring(11); |
|
|
|
System.err.println("date:"+date+"; time:"+time+";spaceId:"+spaceId); |
|
|
|
List<DmMeetingOrdersPo> list = dmMeetingOrdersMapper.findAllListByDate(date,time, spaceId); |
|
|
|
List<DmMeetingOrdersDto> res = new ArrayList<>(); |
|
|
|
list.forEach(item -> { |
|
|
|
|