Commit 7cccbe21 authored by alex yao's avatar alex yao

feat[ai_software_copyright]: add created_time

parent 72d8ca68
...@@ -135,6 +135,7 @@ public class BizSoftwareCopyrightConvert { ...@@ -135,6 +135,7 @@ public class BizSoftwareCopyrightConvert {
); );
softwareCopyRightDto.setGeneratedStatus(item.getGeneratedStatus()); softwareCopyRightDto.setGeneratedStatus(item.getGeneratedStatus());
softwareCopyRightDto.setErrorMess(item.getErrorMess()); softwareCopyRightDto.setErrorMess(item.getErrorMess());
softwareCopyRightDto.setCreatedTime(item.getCreatedTime);
return softwareCopyRightDto; return softwareCopyRightDto;
} }
} }
\ No newline at end of file
...@@ -30,6 +30,16 @@ public class SoftwareCopyRightDto { ...@@ -30,6 +30,16 @@ public class SoftwareCopyRightDto {
private String errorMess; 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() { public Long getId() {
return id; return id;
} }
......
...@@ -5,7 +5,8 @@ select ...@@ -5,7 +5,8 @@ select
reference_document_file_url, reference_document_file_url,
generated_doc_type, generated_doc_type,
generated_status, generated_status,
error_mess error_mess,
CREATED_TIME
from from
biz_software_copyright biz_software_copyright
where where
......
...@@ -111,4 +111,19 @@ public class SoftwareCopyrightQueryItem extends BaseItemClass implements Seriali ...@@ -111,4 +111,19 @@ public class SoftwareCopyrightQueryItem extends BaseItemClass implements Seriali
this.errorMess = errorMess; 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
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