Air
2024-11-04 a1f06d31b7b4cac569c34bdfbb68de77f2858ffe
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
package com.nova.sankuai.domain.entity;
 
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 */
@Data
@ApiModel(value = "区县表")
public class Area {
 
    @ApiModelProperty(value = "主键")
    @TableId
    private Integer id;
 
    @ApiModelProperty(value = "区县名")
    private String name;
 
    @ApiModelProperty(value = "区县ID")
    private String areaId;
 
    @ApiModelProperty(value = "城市ID")
    private String cityId;
 
}