New file |
| | |
| | | package com.dy.pipIrrGlobal.voBa; |
| | | |
| | | import com.alibaba.fastjson2.JSONArray; |
| | | import com.alibaba.fastjson2.annotation.JSONField; |
| | | import com.alibaba.fastjson2.writer.ObjectWriterImplToString; |
| | | import com.fasterxml.jackson.annotation.JsonPropertyOrder; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @author ZhuBaoMin |
| | | * @date 2024-08-14 16:05 |
| | | * @LastEditTime 2024-08-14 16:05 |
| | | * @Description 片区视图对象 |
| | | */ |
| | | |
| | | @Data |
| | | @JsonPropertyOrder({"id","name","header","phone","area","color","remark","deleted"}) |
| | | public class VoBlock { |
| | | private static final long serialVersionUID = 202408141606001L; |
| | | |
| | | @JSONField(serializeUsing= ObjectWriterImplToString.class) |
| | | private Long id; |
| | | |
| | | private String name; |
| | | |
| | | private String header; |
| | | |
| | | private String phone; |
| | | |
| | | private Integer area; |
| | | |
| | | private String color; |
| | | |
| | | private String remark; |
| | | |
| | | private Integer deleted; |
| | | |
| | | private JSONArray graphs; |
| | | } |