You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
502 B
Java
21 lines
502 B
Java
package com.supervision.pojo.vo;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
import javax.validation.constraints.NotBlank;
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class PrimaryConfirmReqVO {
|
|
|
|
@NotBlank(message = "流程ID不能为空")
|
|
private String processId;
|
|
|
|
@ApiModelProperty("是否暂存,1是,0否(否就是直接诊毕)")
|
|
private Integer tempSaveFlag;
|
|
|
|
@ApiModelProperty("确认结果")
|
|
private List<PrimaryConfirmNodeReqVO> primaryConfirmList;
|
|
}
|