|
|
@@ -0,0 +1,21 @@
|
|
|
+package com.zsElectric.boot.business.model.dto;
|
|
|
+
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 修改站点提示语入参
|
|
|
+ *
|
|
|
+ * @author system
|
|
|
+ * @since 2025-12-16
|
|
|
+ */
|
|
|
+@Schema(description = "修改站点提示语入参")
|
|
|
+@Data
|
|
|
+public class UpdateStationTipsDTO {
|
|
|
+
|
|
|
+ @Schema(description = "站点ID", required = true)
|
|
|
+ private Long stationId;
|
|
|
+
|
|
|
+ @Schema(description = "站点提示语")
|
|
|
+ private String stationTips;
|
|
|
+}
|