You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
640 B
33 lines
640 B
package com.elink.esua.epdc.dto.group;
|
|
|
|
import lombok.Data;
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* @Author:liuchuang
|
|
* @Date:2019/11/6 13:18
|
|
*/
|
|
@Data
|
|
public class UserReviewDto implements Serializable {
|
|
private static final long serialVersionUID = 5555206313726765102L;
|
|
|
|
private String id;
|
|
|
|
/**
|
|
* 审核结果(5:审核不通过,10:审核通过)
|
|
*/
|
|
@NotNull(message = "审核结果不能为空")
|
|
private Integer state;
|
|
|
|
/**
|
|
* 审核意见
|
|
*/
|
|
private String auditOpinion;
|
|
|
|
/**
|
|
* 用户ID
|
|
*/
|
|
private String userId;
|
|
}
|
|
|