Commit 66af4c89 by 刘鑫

feat(BEAN 接口): 工单改约、 工单取消

参数变更
1 parent eff22bf1
......@@ -16,7 +16,7 @@ public class OrderCancel {
/**
* 取消原因
*/
private String cancellationReason;
private Reason cancellationReason;
/**
* 取消备注
*/
......
package com.dituhui.pea.order.feign.bean;
import lombok.Getter;
import lombok.Setter;
@Setter
@Getter
public class Reason {
/**
* 一级原因
*/
private String oneLevel;
/**
* 二级原因
*/
private String twoLevel;
/**
* 三级原因
*/
private String threeLevel;
}
......@@ -22,7 +22,7 @@ public class Rescheduled {
/**
* 改约原因
*/
private String reasonForRescheduling;
private Reason reasonForRescheduling;
/**
* 改约备注
*/
......@@ -50,5 +50,26 @@ public class Rescheduled {
* 审批人工号
*/
private String approver;
/**
* 改派后工程师工号 reassignment 为true必填
*/
private String executorWorkNo;
/**
* 改派辅助工程师工号 没有辅助工程师传null
*/
private String assistantWorkNo;
/**
* 工程师部门id reassignment 为true必填
*/
private String orgUnitId;
/**
* 辅助工程师部门id 没有辅助工程师传null
*/
private String assOrgUnitId;
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!