From 8ddec1fa60bdbd2d970cff7b4bf2ae5b4ded1627 Mon Sep 17 00:00:00 2001 From: 陶杰 <1378534974@qq.com> Date: 星期日, 29 十二月 2024 14:58:28 +0800 Subject: [PATCH] 1.腾讯地图:定时任务每天凌晨5点 --- src/main/java/com/mzl/flower/dto/request/district/CreateDistrictTengxunDTO.java | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 50 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/mzl/flower/dto/request/district/CreateDistrictTengxunDTO.java b/src/main/java/com/mzl/flower/dto/request/district/CreateDistrictTengxunDTO.java new file mode 100644 index 0000000..f0f918e --- /dev/null +++ b/src/main/java/com/mzl/flower/dto/request/district/CreateDistrictTengxunDTO.java @@ -0,0 +1,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; + + + +} -- Gitblit v1.9.3