12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package com.welampiot.vo;
- import com.welampiot.dto.RepairGroupDTO;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.List;
- /**
- * ClassName: RepairGroupVO
- * Package: com.welampiot.vo
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/7/17 - 10:16
- * @Version: v1.0
- */
- @Data
- public class RepairGroupVO implements Serializable {
- private Integer page;
- private Integer count;
- private String keyword;
- private List<Integer> sectionList;
- private List<RepairGroupDTO> list;
- private String name;
- private String number;
- private Integer id;
- private Integer areaId;
- private Integer sectionId;
- private String section;
- private String area;
- private Integer workCount;
- private Integer version;
- private static final long serialVersionUID = 1L;
- }
|