kongdeqiang
2023-07-10 85f5baee0e3d255860395278dcb5cbb5cc766023
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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;
}