12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package com.welampiot.vo;
- import com.welampiot.dto.DefectManageDTO;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.List;
- /**
- * ClassName: DefectManageVO
- * Package: com.welampiot.vo
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/6/29 - 13:40
- * @Version: v1.0
- */
- @Data
- public class DefectManageVO implements Serializable {
- private static final long serialVersionUID = 1L;
- private Integer page;
- private Integer count;
- private Integer status;
- private String keyword;
- private Integer areaId;
- private Integer sectionId;
- private Integer cityId;
- private Integer provinceId;
- private List<Integer> sectionList;
- private Integer total; // 设备总数(列表使用)
- private Integer total1; // 设备总数(tab栏使用)
- private Integer total2; // 未派发
- private Integer total3; // 处理中
- private Integer total4; // 复核中
- private Integer total5; // 已结案
- private Integer total6; // 已归档
- private List<DefectManageDTO> list;
- }
|