Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
poc-api
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
1
Merge Requests
1
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
poc
poc-api
Commits
7cccbe21
Commit
7cccbe21
authored
Jan 08, 2026
by
alex yao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat[ai_software_copyright]: add created_time
parent
72d8ca68
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
1 deletion
+28
-1
BizSoftwareCopyrightConvert.java
...ftware_copyright/convert/BizSoftwareCopyrightConvert.java
+1
-0
SoftwareCopyRightDto.java
...m/poc/ai_software_copyright/dto/SoftwareCopyRightDto.java
+10
-0
SoftwareCopyrightQuery.sql
...oc/ai_software_copyright/query/SoftwareCopyrightQuery.sql
+2
-1
SoftwareCopyrightQueryItem.java
..._software_copyright/query/SoftwareCopyrightQueryItem.java
+15
-0
No files found.
src/main/java/cn/com/poc/ai_software_copyright/convert/BizSoftwareCopyrightConvert.java
View file @
7cccbe21
...
...
@@ -135,6 +135,7 @@ public class BizSoftwareCopyrightConvert {
);
softwareCopyRightDto
.
setGeneratedStatus
(
item
.
getGeneratedStatus
());
softwareCopyRightDto
.
setErrorMess
(
item
.
getErrorMess
());
softwareCopyRightDto
.
setCreatedTime
(
item
.
getCreatedTime
);
return
softwareCopyRightDto
;
}
}
\ No newline at end of file
src/main/java/cn/com/poc/ai_software_copyright/dto/SoftwareCopyRightDto.java
View file @
7cccbe21
...
...
@@ -30,6 +30,16 @@ public class SoftwareCopyRightDto {
private
String
errorMess
;
private
java
.
util
.
Date
createdTime
;
public
java
.
util
.
Date
getCreatedTime
(){
return
this
.
createdTime
;
}
public
void
setCreatedTime
(
java
.
util
.
Date
createdTime
){
this
.
createdTime
=
createdTime
;
}
public
Long
getId
()
{
return
id
;
}
...
...
src/main/java/cn/com/poc/ai_software_copyright/query/SoftwareCopyrightQuery.sql
View file @
7cccbe21
...
...
@@ -5,7 +5,8 @@ select
reference_document_file_url
,
generated_doc_type
,
generated_status
,
error_mess
error_mess
,
CREATED_TIME
from
biz_software_copyright
where
...
...
src/main/java/cn/com/poc/ai_software_copyright/query/SoftwareCopyrightQueryItem.java
View file @
7cccbe21
...
...
@@ -111,4 +111,19 @@ public class SoftwareCopyrightQueryItem extends BaseItemClass implements Seriali
this
.
errorMess
=
errorMess
;
}
/** CREATED_TIME
*创建时间
*/
private
java
.
util
.
Date
createdTime
;
@Column
(
name
=
"CREATED_TIME"
)
public
java
.
util
.
Date
getCreatedTime
(){
return
this
.
createdTime
;
}
public
void
setCreatedTime
(
java
.
util
.
Date
createdTime
){
this
.
createdTime
=
createdTime
;
super
.
addValidField
(
"createdTime"
);
}
}
\ No newline at end of file
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