| | |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.springblade.core.tool.utils.Func; |
| | | import org.springblade.mdm.flow.constants.FlowContants; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | |
| | | @Schema(description = "固化程序程序节点id(如果有)") |
| | | private Long curedNodeId; |
| | | |
| | | @Schema(description = "程序程序节点id,能确定节点id的流程会有该属性") |
| | | private Long nodeId; |
| | | |
| | | @Schema(description = "流程实例id") |
| | | private String processInstanceId; |
| | | |
| | |
| | | private String processDefinitionKey; |
| | | @Schema(description = "工序版次是否一致") |
| | | private String isProcessEditionSame; |
| | | |
| | | @Schema(description = "偏离单号") |
| | | private String deviation; |
| | | |
| | | @Schema(description = "程序是否可用判定:Y/N") |
| | | private String cureProgramUseable; |
| | | |
| | | @Schema(description = "专业组长id") |
| | | private Long teamLeaderId; |
| | | @Schema(description = "编程员id") |
| | | private Long programmerId; |
| | | @Schema(description = "校对员id") |
| | | private Long checkerId; |
| | | @Schema(description = "审核高师ID") |
| | | private Long seniorId; |
| | | @Schema(description = "是否临时流程:Y/N") |
| | | private String isTempFlow; |
| | | } |