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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.glxp.api.req.basic ;
import com.baomidou.mybatisplus.annotation.TableField ;
import lombok.Data ;
import javax.validation.constraints.NotEmpty ;
import javax.validation.constraints.NotNull ;
@Data
public class SubmitApprovalFlowRequest {
/**
* 明细表主键
*/
@TableField ( value = "id" )
@NotEmpty ( message = "审批明细id不可以为空! " )
private String id ;
/**
* 审批意见
*/
@TableField ( value = "approvalOpinion" )
@NotEmpty ( message = "审批意见不可以为空!" )
private String approvalOpinion ;
/**
* 审核状态( 1: 审核中; 2: 等待我审核; 3: 通过; 4: 驳回)
*/
@TableField ( value = "approvalStatus" )
@NotNull ( message = "审核状态不可以为空!" )
private Integer approvalStatus ;
}