2 changed files with 43 additions and 0 deletions
@ -0,0 +1,22 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2021/5/13 11:05 上午 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class ProjectEvaluateScoreFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -8126781510521211570L; |
|||
|
|||
public interface ProjectEvaluateScoreForm{} |
|||
|
|||
@NotBlank(message = "projectId不能为空",groups = ProjectEvaluateScoreForm.class) |
|||
private String projectId; |
|||
} |
|||
@ -0,0 +1,21 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import com.epmet.commons.tools.constant.NumConstant; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2021/5/13 10:57 上午 |
|||
* @DESC |
|||
*/ |
|||
public class ProjectEvaluateScoreResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 3317308221138082162L; |
|||
|
|||
/** |
|||
* 项目评价分数 |
|||
*/ |
|||
private Integer score = NumConstant.ZERO; |
|||
|
|||
} |
|||
Loading…
Reference in new issue