Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
5c5e4492
Commit
5c5e4492
authored
Sep 09, 2025
by
tianbo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(biz-common): 新增通用区域信息 DTO 类
新增 CommonRegionDto 类,用于表示通用区域信息。包含以下字段: - 区域代码(indexCode) -父级区域代码(parentIndexCode) - 区域代码(摄像头所属企业统一信用代码)(useUnitCode)
parent
941754b0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
CommonRegionDto.java
...com/yeejoin/amos/boot/biz/common/dto/CommonRegionDto.java
+27
-0
No files found.
amos-boot-biz-common/src/main/java/com/yeejoin/amos/boot/biz/common/dto/CommonRegionDto.java
0 → 100644
View file @
5c5e4492
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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment