9 changed files with 90 additions and 8 deletions
@ -0,0 +1,29 @@ |
|||
package com.elink.esua.epdc.dto.item.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.Min; |
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* @Author LC |
|||
* @Date 2019/9/9 16:24 |
|||
*/ |
|||
@Data |
|||
public class EvaluationFormDTO implements Serializable { |
|||
private static final long serialVersionUID = -3034807666143092535L; |
|||
|
|||
@NotBlank(message = "项目ID不能为空") |
|||
private String itemId; |
|||
|
|||
@NotBlank(message = "满意度评价得分不能为空") |
|||
private int evaluationScore; |
|||
|
|||
@NotBlank(message = "满意度评价内容不能为空") |
|||
private String evaluationContent; |
|||
|
|||
private String userId; |
|||
|
|||
} |
|||
Loading…
Reference in new issue