fix: 过鱼设施模块优化

This commit is contained in:
tangwei 2026-06-09 09:54:41 +08:00
parent b63d57813a
commit c5a18c6c06
2 changed files with 5 additions and 0 deletions

View File

@ -226,6 +226,9 @@ public class FpVmsstbprptVo implements Serializable {
@Schema(description = "数据来源")
private String vlsr;
@Schema(description = "LOGO")
private String logo;
@Schema(description = "数据来源时间")
private Date vlsrTm;

View File

@ -98,6 +98,7 @@ public class FpBuildServiceImpl implements FpBuildService {
StringBuilder sql = new StringBuilder();
sql.append("SELECT ")
.append("fp.STCD AS stcd, ")
.append("fp.LOGO AS logo, ")
.append("fp.STNM AS stnm, ")
.append("fp.STTP AS sttpCode, ")
.append("sttp.STTP_NAME AS sttpName, ")
@ -313,6 +314,7 @@ public class FpBuildServiceImpl implements FpBuildService {
columnMap.put("sttpName", "sttp.STTP_NAME");
columnMap.put("sttpFullPath", "sttp.FULL_PATH");
columnMap.put("rstcd", "fp.RSTCD");
columnMap.put("logo", "fp.LOGO");
columnMap.put("ennm", "eng.ENNM");
columnMap.put("baseId", "eng.BASE_ID");
columnMap.put("baseName", "hb.BASENAME");