package com.moral.entity; import lombok.Data; import javax.persistence.Id; @Data public class PollutionSourcePoint { @Id Integer id; Integer monitorPointId; Double longitude; Double latitude; }