CRM Workflow Creation
#7
Merged
naeem.ullah
merged 1 commits from Wasi/BS-2086 into dev-pending-20-01-2026 2 weeks ago
@ -0,0 +1,43 @@
|
||||
package com.mfsys.aconnect.client.dto;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@Data
|
||||
public class ApproveCRMRequestDTO {
|
||||
|
||||
private String workFlowId;
|
||||
|
||||
private String formId;
|
||||
|
||||
private String postProcessFormId;
|
||||
|
||||
private String operation;
|
||||
|
||||
@JsonProperty("SUS_USERCODE")
|
||||
private String susUserCode;
|
||||
|
||||
@JsonProperty("POR_ORGACODE")
|
||||
private String porOrgacode;
|
||||
|
||||
private String filter;
|
||||
|
||||
@JsonProperty("$set")
|
||||
private String set;
|
||||
|
||||
@JsonProperty("$push")
|
||||
private String push;
|
||||
|
||||
private String arrayFilters;
|
||||
|
||||
private Map<String, Object> filesMap;
|
||||
|
||||
private List<AutoIncrementFieldDTO> autoIncrementFields;
|
||||
|
||||
private List<FormCounterDTO> formCounters;
|
||||
|
||||
private WorkflowDTO workflow;
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
package com.mfsys.aconnect.client.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class WorkflowDTO {
|
||||
|
||||
private String workFlowId;
|
||||
|
||||
private Integer workFlowRefNum;
|
||||
|
||||
private String previousStage;
|
||||
|
||||
private String nextStage;
|
||||
}
|
||||
Loading…
Reference in New Issue