Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
@@ -16,7 +16,7 @@ import lombok.NoArgsConstructor;
@ContentRowHeight(25)
public class QwPlanItemExportVO {
- @ExcelProperty("类型(0-自动回复 1-每日推送)")
+ @ExcelProperty("类型(0-社群 1-自动回复)")
private String type;
@ExcelProperty("场景(0-群发 1-单发)")
@@ -1512,13 +1512,7 @@ public class ContentPlatformPlanServiceImpl implements ContentPlatformPlanServic
if (Objects.isNull(type)) {
return "";
}
- if (type == 0) {
- return "自动回复";
- }
- if (type == 1) {
- return "每日推送";
- return String.valueOf(type);
+ return QwPlanTypeEnum.from(type).getDescription();
private String convertQwPlanSceneText(Integer scene) {