package com.ruoyi.bussiness.object.request.placementApply;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotNull;
|
|
@Data
|
public class PlacementApplyApproveRequest {
|
|
@NotNull(message = "申请Id不能为空")
|
@ApiModelProperty(value = "申请Id")
|
private Long applyId;
|
|
@NotNull(message = "审核状态不能为空")
|
@ApiModelProperty(value = "状态(1通过 2驳回)")
|
private Integer status;
|
|
@ApiModelProperty(value = "原因")
|
private String reason;
|
|
}
|