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
53c8d5c7
Commit
53c8d5c7
authored
Apr 16, 2025
by
刘林
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(jg):履历信息表添加数据来源字段
parent
a15c9efd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
JgResumeInfoDto.java
.../yeejoin/amos/boot/module/jg/api/dto/JgResumeInfoDto.java
+6
-3
JgResumeInfo.java
.../yeejoin/amos/boot/module/jg/api/entity/JgResumeInfo.java
+6
-0
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/java/com/yeejoin/amos/boot/module/jg/api/dto/JgResumeInfoDto.java
View file @
53c8d5c7
...
...
@@ -3,9 +3,7 @@ package com.yeejoin.amos.boot.module.jg.api.dto;
import
com.yeejoin.amos.boot.biz.common.dto.BaseDto
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Builder
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
lombok.*
;
import
java.util.Date
;
/**
...
...
@@ -18,6 +16,8 @@ import java.util.Date;
@EqualsAndHashCode
(
callSuper
=
true
)
@ApiModel
(
value
=
"JgResumeInfoDto"
,
description
=
""
)
@Builder
@AllArgsConstructor
@NoArgsConstructor
public
class
JgResumeInfoDto
extends
BaseDto
{
private
static
final
long
serialVersionUID
=
1L
;
...
...
@@ -54,4 +54,7 @@ public class JgResumeInfoDto extends BaseDto {
@ApiModelProperty
(
value
=
"详情路径"
)
private
String
routePath
;
@ApiModelProperty
(
value
=
"数据来源(新增:0、导入:1)"
)
private
String
dataSource
;
}
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/java/com/yeejoin/amos/boot/module/jg/api/entity/JgResumeInfo.java
View file @
53c8d5c7
...
...
@@ -87,4 +87,10 @@ public class JgResumeInfo extends BaseEntity {
*/
@TableField
(
"route_path"
)
private
String
routePath
;
/**
* 数据来源(新增:0、导入:1)
*/
@TableField
(
"data_source"
)
private
String
dataSource
;
}
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