fix: 优化过鱼设施游向返回

This commit is contained in:
tangwei 2026-06-11 13:57:35 +08:00
parent b083dd7019
commit 1076d58f3a
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ public class FpSdfpssrVo {
private Integer direction; private Integer direction;
@Schema(description = "游向") @Schema(description = "游向")
private Integer directionName; private String directionName;
@Schema(description = "监测方式") @Schema(description = "监测方式")
private Integer mway; private Integer mway;

View File

@ -783,7 +783,7 @@ public class FpRunServiceImpl implements FpRunService {
"t.PICPTH AS picpth, " + "t.PICPTH AS picpth, " +
"t.VDPTH AS vdpth, " + "t.VDPTH AS vdpth, " +
"t.DIRECTION AS direction, " + "t.DIRECTION AS direction, " +
"t.DIRECTION AS directionName, " + " CASE t.DIRECTION WHEN 0 THEN '上行' WHEN 1 THEN '下行' WHEN 2 THEN '上行折返' WHEN 3 THEN '下行折返' END AS directionName, " +
"1 AS mway, " + "1 AS mway, " +
"t.STRDT AS strdt, " + "t.STRDT AS strdt, " +
"t.ENDDT AS enddt, " + "t.ENDDT AS enddt, " +