Commit 5c5e4492 authored by tianbo's avatar tianbo

feat(biz-common): 新增通用区域信息 DTO 类

新增 CommonRegionDto 类,用于表示通用区域信息。包含以下字段: - 区域代码(indexCode) -父级区域代码(parentIndexCode) - 区域代码(摄像头所属企业统一信用代码)(useUnitCode)
parent 941754b0
package com.yeejoin.amos.boot.biz.common.dto;
import io.swagger.annotations.ApiModel;
import lombok.Data;
/**
* @author Administrator
*/
@Data
@ApiModel(value = "CommonRegionDto", description = "通用区域信息")
public class CommonRegionDto {
/**
* 区域代码
*/
private String indexCode;
/**
* 父级区域代码
*/
private String parentIndexCode;
/**
* 区域代码(摄像头所属企业统一信用代码)
*/
private String useUnitCode;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment