cloudroam
2025-03-31 f060439c675cb9185252cfc8f034853290863c62
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package com.mzl.flower.dto.request.district;
 
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.ApiOperation;
import lombok.Data;
 
import javax.validation.constraints.NotEmpty;
 
@Data
@ApiModel("腾讯地图的行政区划 ")
public class CreateDistrictTengxunDTO {
 
    private String id;
 
    /**
     * 名称
     */
    @ApiModelProperty(value = "name")
    @NotEmpty(message = "名称不能为空")
    private String name;
 
    /**
     * 全称
     */
    @ApiModelProperty(value = "fullname")
    @NotEmpty(message = "全称不能为空")
    private String fullname;
 
    /**
     * 区域编码
     */
    @ApiModelProperty(value = "code")
    @NotEmpty(message = "编码不能为空")
    private String code;
 
 
    @ApiModelProperty(value = "等级")
    private Integer level;
 
    /**
     * 父id
     */
    @ApiModelProperty(value = "父id")
    private String parentId;
 
 
 
}