|
@@ -32,9 +32,9 @@ public class TBCrmDetail extends BaseEntity implements Serializable {
|
|
|
@ApiModelProperty(value = "流程部署id")
|
|
|
private String flowDeploymentId;
|
|
|
|
|
|
- @ApiModelProperty(value = "流程id")
|
|
|
+ @ApiModelProperty(value = "sop单号")
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
- private Long flowId;
|
|
|
+ private String sopNo;
|
|
|
|
|
|
@ApiModelProperty(value = "过程变量")
|
|
|
private String processVar;
|
|
@@ -112,12 +112,12 @@ public class TBCrmDetail extends BaseEntity implements Serializable {
|
|
|
this.flowDeploymentId = flowDeploymentId;
|
|
|
}
|
|
|
|
|
|
- public Long getFlowId() {
|
|
|
- return flowId;
|
|
|
+ public String getSopNo() {
|
|
|
+ return sopNo;
|
|
|
}
|
|
|
|
|
|
- public void setFlowId(Long flowId) {
|
|
|
- this.flowId = flowId;
|
|
|
+ public void setSopNo(String sopNo) {
|
|
|
+ this.sopNo = sopNo;
|
|
|
}
|
|
|
|
|
|
public String getProcessVar() {
|