Commit 259de27c by 刘鑫

feat(工作日历):工作日历新增是否全天字段-变更

1 parent 6a240d23
package com.dituhui.pea.order.dto; package com.dituhui.pea.order.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import javax.validation.constraints.NotBlank; import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull; import javax.validation.constraints.NotNull;
import java.util.Date; import java.util.Date;
...@@ -11,12 +14,14 @@ public class CalendarUpdateDTO { ...@@ -11,12 +14,14 @@ public class CalendarUpdateDTO {
/** /**
* 日程是否是全天 * 日程是否是全天
*/ */
@NotBlank(message = "请指定日程是否是全天") @NotNull(message = "请指定日程是否是全天")
private Boolean wholeDay; private Boolean wholeDay;
/** /**
* 日程所属日期, 格式: yyyy-MM-dd * 日程所属日期, 格式: yyyy-MM-dd
*/ */
@NotNull(message = "请指定日程所属日期, 格式:yyyy-MM-dd") @NotNull(message = "请指定日程所属日期, 格式:yyyy-MM-dd")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private Date itineraryDate; private Date itineraryDate;
/** /**
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!