| | |
| | | public class MarkJsonEntity implements Serializable { |
| | | private static final long serialVersionUID = 7776629022021914001L; |
| | | |
| | | private Integer id; |
| | | private Long id; |
| | | |
| | | private String name; |
| | | |
| | | private String type; |
| | | |
| | | private String fillColor; |
| | | |
| | |
| | | public MarkJsonEntity() { |
| | | } |
| | | |
| | | public MarkJsonEntity(Integer id) { |
| | | public MarkJsonEntity(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Integer getId() { |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Integer id) { |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | |
| | | this.name = name; |
| | | } |
| | | |
| | | public String getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(String type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public String getFillColor() { |
| | | return fillColor; |
| | | } |