电子看板接口修改

This commit is contained in:
cwchen 2025-06-10 15:28:25 +08:00
parent f4b5519c06
commit 6055725b7f
3 changed files with 1 additions and 25 deletions

View File

@ -98,14 +98,6 @@ public interface DigitalSignageDao {
*/ */
List<DigitalSignageVo.CablewaTransPointVo> getCablewaTransPointVos(Long id); List<DigitalSignageVo.CablewaTransPointVo> getCablewaTransPointVos(Long id);
/**
* 基础浇筑-ABCD腿完成情况
* @param vo
* @return List<TowerPouringVo>
* @author cwchen
* @date 2025/5/20 16:46
*/
List<DigitalSignageVo.TowerPouringVo> getTowerPourings(DigitalSignageVo.TowerInfoVo vo);
/** /**
* 查询公路 * 查询公路

View File

@ -317,14 +317,6 @@ public class DigitalSignageVo {
private int towerProgress; private int towerProgress;
} }
@Data
public static class TowerPouringVo {
/**A腿 B腿 C腿 D腿*/
private String leg;
/**完成情况 1.完成 0.未完成*/
private String finishStatus;
}
@Data @Data
public static class SpanInfoVo { public static class SpanInfoVo {

View File

@ -198,15 +198,7 @@
WHERE cablewa_trans_id = #{id} WHERE cablewa_trans_id = #{id}
ORDER BY sort ORDER BY sort
</select> </select>
<!--基础浇筑-ABCD腿完成情况-->
<select id="getTowerPourings"
resultType="com.bonus.digitalSignage.backstage.entity.vo.DigitalSignageVo$TowerPouringVo">
SELECT leg,
finish_status AS finishStatus
FROM tb_tower_pouring
WHERE tower_id = #{id}
ORDER BY leg
</select>
<!--查询公路--> <!--查询公路-->
<select id="getHighways" <select id="getHighways"
resultType="com.bonus.digitalSignage.backstage.entity.vo.DigitalSignageVo$HighwayVo"> resultType="com.bonus.digitalSignage.backstage.entity.vo.DigitalSignageVo$HighwayVo">