7 changed files with 124 additions and 24 deletions
@ -0,0 +1,23 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import com.epmet.commons.tools.dto.form.PageFormDTO; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/5/18 09:57 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class SatisfactionEvaluationListFormDTO extends PageFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1790517675681175478L; |
|||
|
|||
public interface SatisfactionEvaluationListForm{} |
|||
|
|||
@NotBlank(message = "projectId不能为空",groups = SatisfactionEvaluationListForm.class) |
|||
private String projectId; |
|||
} |
@ -0,0 +1,35 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonIgnore; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/5/18 09:58 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class SatisfactionEvaluationListResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 4086193179665858119L; |
|||
|
|||
/** |
|||
* 评价人 |
|||
*/ |
|||
private String evaluationUser; |
|||
|
|||
@JsonIgnore |
|||
private String userId; |
|||
|
|||
/** |
|||
* 评价时间 |
|||
*/ |
|||
private String time; |
|||
|
|||
/** |
|||
* 评价内容 |
|||
*/ |
|||
private String content; |
|||
} |
Loading…
Reference in new issue