package com.lovenav.entity; import java.io.Serializable; import java.util.Date; import lombok.Data; /** * ln_url_access */ @Data public class UrlAccess implements Serializable { /** * id */ private Integer id; /** * url id */ private Integer urlId; /** * 日期 */ private Date time; /** * 访问量 */ private Long views; private static final long serialVersionUID = 1L; }