| | |
| | | |
| | | import java.time.LocalDateTime; |
| | | 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; |
| | |
| | | private List<Long> deptIds; |
| | | private String deptName; |
| | | |
| | | /** 点位标签 */ |
| | | private String [] pointTags; |
| | | private String pointTagString; |
| | | /** 重点点位标签 */ |
| | | private ImportantTagEnum importantTag; |
| | | /** 省厅点位标签 */ |
| | | private ProvinceTagEnum provinceTag; |
| | | |
| | | public static YwPointVO getVoByEntity(@NonNull YwPoint entity, YwPointVO vo) { |
| | | if(vo == null) { |