线路工程管理

This commit is contained in:
马三炮 2025-04-25 13:59:12 +08:00
parent 507b2b8ce6
commit 4411ed49cb
3 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,8 @@
package com.bonus.digitalSignage.basic.vo;
/**
* @author 马三炮
* @date 2025/4/25
*/
public class TbCablewaTransVo {
}

View File

@ -3,6 +3,7 @@ package com.bonus.digitalSignage.basic.vo;
import lombok.Data;
import java.util.Date;
import java.util.List;
/**
* @author 马三炮
@ -101,6 +102,21 @@ public class TbProjectVo {
*/
private Long updateUserId;
/**
* 杆塔数量
*/
private List<TbTowerVo> tbTowerVoList;
/**
* 三跨数量
*/
private List<TbThreeSpanVo> tbThreeSpanVoList;
/**
* 索道数量
*/
private List<TbCablewaTransVo> tbCablewaTransVoList;
private int pageNum = 1;
private int pageSize = 10;
}

View File

@ -0,0 +1,8 @@
package com.bonus.digitalSignage.basic.vo;
/**
* @author 马三炮
* @date 2025/4/25
*/
public class TbThreeSpanVo {
}