| | |
| | | package com.ycl.platform.domain.vo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ycl.platform.base.AbsVo; |
| | | import com.ycl.platform.domain.entity.YwPoint; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | import enumeration.general.ImportantTagEnum; |
| | | import enumeration.general.ProvinceTagEnum; |
| | | import org.springframework.lang.NonNull; |
| | | import org.springframework.beans.BeanUtils; |
| | | import lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | /** |
| | | * 运维点位展示 |
| | |
| | | /** 备注 */ |
| | | private String remark; |
| | | |
| | | private Short category; |
| | | |
| | | /** 监管部门 */ |
| | | private Long deptId; |
| | | private List<Long> deptIds; |
| | | private String deptName; |
| | | |
| | | /** 重点点位标签 */ |
| | | private ImportantTagEnum importantTag; |
| | | private Boolean importantTag; |
| | | |
| | | /** 省厅点位标签 */ |
| | | private ProvinceTagEnum provinceTag; |
| | | private Boolean provinceTagVideo; |
| | | private Boolean provinceTagCar; |
| | | private Boolean provinceTagFace; |
| | | |
| | | /** 重点指挥图像标签 */ |
| | | private Boolean importantCommandImageTag; |
| | | |
| | | /** 部级标签 */ |
| | | private Boolean deptTag; |
| | | |
| | | /** 国标码 */ |
| | | private String serialNumber; |
| | | |
| | | /** |
| | | * 动态列 |
| | | */ |
| | | private List<DynamicColumnVO> dynamicColumnList; |
| | | |
| | | /** 设备登录的用户名密码 */ |
| | | private String username; |
| | | private String password; |
| | | |
| | | public static YwPointVO getVoByEntity(@NonNull YwPoint entity, YwPointVO vo) { |
| | | if(vo == null) { |