| | |
| | | package com.ycl.platform.domain.vo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.ycl.platform.base.AbsVo; |
| | | import com.ycl.platform.domain.entity.YwPoint; |
| | | |
| | |
| | | import java.util.List; |
| | | import org.springframework.lang.NonNull; |
| | | import org.springframework.beans.BeanUtils; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | | |
| | |
| | | private LocalDateTime endTime; |
| | | |
| | | /** 运维单位 */ |
| | | private Integer unitId; |
| | | private Long unitId; |
| | | private String unitName; |
| | | |
| | | private String unitName; |
| | | /** 运维状态 */ |
| | | private String status; |
| | | |
| | |
| | | |
| | | private Short category; |
| | | |
| | | /** 监管部门 */ |
| | | private Long deptId; |
| | | private List<Long> deptIds; |
| | | private String deptName; |
| | | private String pointDetail; |
| | | |
| | | /** 点位标签 */ |
| | | private String [] pointTags; |
| | | private String pointTagString; |
| | | |
| | | public static YwPointVO getVoByEntity(@NonNull YwPoint entity, YwPointVO vo) { |
| | | if(vo == null) { |