package com.gkhy.safePlatform.specialWork.model.dto.req; import javax.validation.constraints.NotNull; import java.math.BigDecimal; import java.util.List; /** * 作业审批请求对象 */ public class WorkApprovalReqDTO { //作业id @NotNull(message = "作业申请主键不可为空!") private Long workApplyId; //层级审批类型 @NotNull(message = "层级审批类型!") private byte stepApprovalType; //审批人 private Long approval_uid; //审批结果 private byte result; //图片路径 private String picturePath; //填报审批项内容 private List itemContentReqDTOList; public Long getWorkApplyId() { return workApplyId; } public void setWorkApplyId(Long workApplyId) { this.workApplyId = workApplyId; } public byte getStepApprovalType() { return stepApprovalType; } public void setStepApprovalType(byte stepApprovalType) { this.stepApprovalType = stepApprovalType; } public Long getApproval_uid() { return approval_uid; } public void setApproval_uid(Long approval_uid) { this.approval_uid = approval_uid; } public byte getResult() { return result; } public void setResult(byte result) { this.result = result; } public String getPicturePath() { return picturePath; } public void setPicturePath(String picturePath) { this.picturePath = picturePath; } public List getItemContentReqDTOList() { return itemContentReqDTOList; } public void setItemContentReqDTOList(List itemContentReqDTOList) { this.itemContentReqDTOList = itemContentReqDTOList; } }