You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.4 KiB
Java
35 lines
1.4 KiB
Java
|
3 weeks ago
|
package com.sztzjy.linkCommerce.entity.dto;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
public class ConsumerScenarioStepTwoValidationRequest {
|
||
|
|
private List<JourneyAnalysisRow> rows;
|
||
|
|
|
||
|
|
public List<JourneyAnalysisRow> getRows() {
|
||
|
|
return rows;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setRows(List<JourneyAnalysisRow> rows) {
|
||
|
|
this.rows = rows;
|
||
|
|
}
|
||
|
|
|
||
|
|
public static class JourneyAnalysisRow {
|
||
|
|
private String stageId;
|
||
|
|
private String behaviorDescription;
|
||
|
|
private String keyTouchpoints;
|
||
|
|
private String emotionExperience;
|
||
|
|
private String decisionFactors;
|
||
|
|
|
||
|
|
public String getStageId() { return stageId; }
|
||
|
|
public void setStageId(String stageId) { this.stageId = stageId; }
|
||
|
|
public String getBehaviorDescription() { return behaviorDescription; }
|
||
|
|
public void setBehaviorDescription(String behaviorDescription) { this.behaviorDescription = behaviorDescription; }
|
||
|
|
public String getKeyTouchpoints() { return keyTouchpoints; }
|
||
|
|
public void setKeyTouchpoints(String keyTouchpoints) { this.keyTouchpoints = keyTouchpoints; }
|
||
|
|
public String getEmotionExperience() { return emotionExperience; }
|
||
|
|
public void setEmotionExperience(String emotionExperience) { this.emotionExperience = emotionExperience; }
|
||
|
|
public String getDecisionFactors() { return decisionFactors; }
|
||
|
|
public void setDecisionFactors(String decisionFactors) { this.decisionFactors = decisionFactors; }
|
||
|
|
}
|
||
|
|
}
|