package com.boying.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.boying.common.BaseEntity;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
import javax.persistence.Entity;
|
|
/**
|
* @author kdq
|
* @version 1.0.0
|
* @ClassName StreetLogo.java
|
* @Description TODO
|
* @createTime 2022年11月19日 21:07:00
|
*/
|
@Data
|
@TableName("street_logo")
|
@javax.persistence.Table(name = "street_logo")
|
@Entity
|
@org.hibernate.annotations.Table(appliesTo = "street_logo", comment = "街道违章表")
|
@ApiModel(value = "街道违章表")
|
public class StreetLogo extends BaseEntity<StreetLogo> {
|
|
/**
|
* 违章位置名称
|
*/
|
private String name;
|
private String lng;
|
private String lat;
|
}
|