|
|
@ -2,7 +2,6 @@ package com.epmet.dto.form.demand; |
|
|
|
|
|
|
|
import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; |
|
|
|
import lombok.Data; |
|
|
|
import org.hibernate.validator.constraints.Length; |
|
|
|
import org.springframework.format.annotation.DateTimeFormat; |
|
|
|
|
|
|
|
import javax.validation.constraints.NotBlank; |
|
|
@ -35,13 +34,13 @@ public class FinishStaffFromDTO implements Serializable { |
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
|
private Date serviceEndTime; |
|
|
|
|
|
|
|
@NotBlank(message = "完成结果不能为空", groups = IcShowGroup.class) |
|
|
|
// @NotBlank(message = "完成结果不能为空", groups = IcShowGroup.class)
|
|
|
|
private String finishResult; |
|
|
|
|
|
|
|
@Length(max = 1000,message = "最多输入1000字",groups = {IcShowGroup.class}) |
|
|
|
// @Length(max = 1000,message = "最多输入1000字",groups = {IcShowGroup.class})
|
|
|
|
private String finishDesc; |
|
|
|
|
|
|
|
@NotNull(message = "得分不能为空", groups = IcShowGroup.class) |
|
|
|
// @NotNull(message = "得分不能为空", groups = IcShowGroup.class)
|
|
|
|
private BigDecimal score; |
|
|
|
|
|
|
|
|
|
|
|