fix 发送微信消息,日期格式有误

This commit is contained in:
2023-07-24 20:29:36 +08:00
parent 10d244b79c
commit 4c09422a45
3 changed files with 97 additions and 1 deletions

View File

@@ -400,7 +400,7 @@ public class MemberLessonTicketService extends BaseServiceImpl {
if (venueLesson == null) {
return;
}
String lessonTime = DateUtilCard.getStrFromDate(venueLesson.getDate()) + " " + venueLesson.getStartTime().toString() + "-" + venueLesson.getEndTime().toString();
String lessonTime = DateUtilCard.getStrFromDate(venueLesson.getDate()) + " " + venueLesson.getStartTime().toString();
String typeName = VenueTypeEnum.getByValue(venue.getType()).name;
String url = Constants.VENUE_VIEW_URL + venueId;
AsyncTaskUtil.INSTANCE.submit(new NotifyAdminMsgThread(venue.getName(),venueLesson.getName(),lessonTime,typeName,url));