Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
certificate-print
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
廖旭伟
certificate-print
Commits
091a205c
Commit
091a205c
authored
Oct 22, 2022
by
廖旭伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
申请表增加字段
parent
60fdfe80
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1912 additions
and
1678 deletions
+1912
-1678
certificate-manager/doc/api.md
certificate-manager/doc/api.md
+78
-33
certificate-manager/src/main/java/com/mortals/xhx/module/record/model/ApplyLogEntity.java
...a/com/mortals/xhx/module/record/model/ApplyLogEntity.java
+238
-196
certificate-manager/src/main/java/com/mortals/xhx/module/record/model/ApplyLogQuery.java
...va/com/mortals/xhx/module/record/model/ApplyLogQuery.java
+726
-652
certificate-manager/src/main/java/com/mortals/xhx/module/record/model/vo/ApplyLogVo.java
...va/com/mortals/xhx/module/record/model/vo/ApplyLogVo.java
+5
-0
certificate-manager/src/main/resources/sqlmap/module/record/ApplyLogMapper.xml
...rc/main/resources/sqlmap/module/record/ApplyLogMapper.xml
+865
-797
No files found.
certificate-manager/doc/api.md
View file @
091a205c
This diff is collapsed.
Click to expand it.
certificate-manager/src/main/java/com/mortals/xhx/module/record/model/ApplyLogEntity.java
View file @
091a205c
...
@@ -8,11 +8,11 @@ import com.mortals.framework.annotation.Excel;
...
@@ -8,11 +8,11 @@ import com.mortals.framework.annotation.Excel;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.xhx.module.record.model.vo.ApplyLogVo
;
import
com.mortals.xhx.module.record.model.vo.ApplyLogVo
;
/**
/**
* 证照申请实体对象
* 证照申请实体对象
*
*
* @author zxfei
* @author zxfei
* @date 2022-10-22
* @date 2022-10-22
*/
*/
public
class
ApplyLogEntity
extends
ApplyLogVo
{
public
class
ApplyLogEntity
extends
ApplyLogVo
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
...
@@ -85,6 +85,10 @@ public class ApplyLogEntity extends ApplyLogVo {
...
@@ -85,6 +85,10 @@ public class ApplyLogEntity extends ApplyLogVo {
* 证照模板正本表单内容
* 证照模板正本表单内容
*/
*/
private
String
oriFormContent
;
private
String
oriFormContent
;
/**
* 证照模板正本表单内容
*/
private
String
oriFormTemplate
;
/**
/**
* 副本附件地址
* 副本附件地址
*/
*/
...
@@ -97,6 +101,10 @@ public class ApplyLogEntity extends ApplyLogVo {
...
@@ -97,6 +101,10 @@ public class ApplyLogEntity extends ApplyLogVo {
* 证照模板副本表单内容
* 证照模板副本表单内容
*/
*/
private
String
dupFormContent
;
private
String
dupFormContent
;
/**
* 证照模板副本表单内容
*/
private
String
dupFormTemplate
;
/**
/**
* 生成状态1未生成2正本3副本4正副本
* 生成状态1未生成2正本3副本4正副本
*/
*/
...
@@ -343,6 +351,20 @@ public class ApplyLogEntity extends ApplyLogVo {
...
@@ -343,6 +351,20 @@ public class ApplyLogEntity extends ApplyLogVo {
public
void
setOriFormContent
(
String
oriFormContent
){
public
void
setOriFormContent
(
String
oriFormContent
){
this
.
oriFormContent
=
oriFormContent
;
this
.
oriFormContent
=
oriFormContent
;
}
}
/**
* 获取 证照模板正本表单内容
* @return String
*/
public
String
getOriFormTemplate
(){
return
oriFormTemplate
;
}
/**
* 设置 证照模板正本表单内容
* @param oriFormTemplate
*/
public
void
setOriFormTemplate
(
String
oriFormTemplate
){
this
.
oriFormTemplate
=
oriFormTemplate
;
}
/**
/**
* 获取 副本附件地址
* 获取 副本附件地址
* @return String
* @return String
...
@@ -385,6 +407,20 @@ public class ApplyLogEntity extends ApplyLogVo {
...
@@ -385,6 +407,20 @@ public class ApplyLogEntity extends ApplyLogVo {
public
void
setDupFormContent
(
String
dupFormContent
){
public
void
setDupFormContent
(
String
dupFormContent
){
this
.
dupFormContent
=
dupFormContent
;
this
.
dupFormContent
=
dupFormContent
;
}
}
/**
* 获取 证照模板副本表单内容
* @return String
*/
public
String
getDupFormTemplate
(){
return
dupFormTemplate
;
}
/**
* 设置 证照模板副本表单内容
* @param dupFormTemplate
*/
public
void
setDupFormTemplate
(
String
dupFormTemplate
){
this
.
dupFormTemplate
=
dupFormTemplate
;
}
/**
/**
* 获取 生成状态1未生成2正本3副本4正副本
* 获取 生成状态1未生成2正本3副本4正副本
* @return Integer
* @return Integer
...
@@ -438,9 +474,11 @@ public class ApplyLogEntity extends ApplyLogVo {
...
@@ -438,9 +474,11 @@ public class ApplyLogEntity extends ApplyLogVo {
sb
.
append
(
",originalUrl:"
).
append
(
getOriginalUrl
());
sb
.
append
(
",originalUrl:"
).
append
(
getOriginalUrl
());
sb
.
append
(
",oriPreview:"
).
append
(
getOriPreview
());
sb
.
append
(
",oriPreview:"
).
append
(
getOriPreview
());
sb
.
append
(
",oriFormContent:"
).
append
(
getOriFormContent
());
sb
.
append
(
",oriFormContent:"
).
append
(
getOriFormContent
());
sb
.
append
(
",oriFormTemplate:"
).
append
(
getOriFormTemplate
());
sb
.
append
(
",duplicateUrl:"
).
append
(
getDuplicateUrl
());
sb
.
append
(
",duplicateUrl:"
).
append
(
getDuplicateUrl
());
sb
.
append
(
",dupPreview:"
).
append
(
getDupPreview
());
sb
.
append
(
",dupPreview:"
).
append
(
getDupPreview
());
sb
.
append
(
",dupFormContent:"
).
append
(
getDupFormContent
());
sb
.
append
(
",dupFormContent:"
).
append
(
getDupFormContent
());
sb
.
append
(
",dupFormTemplate:"
).
append
(
getDupFormTemplate
());
sb
.
append
(
",generateStatus:"
).
append
(
getGenerateStatus
());
sb
.
append
(
",generateStatus:"
).
append
(
getGenerateStatus
());
return
sb
.
toString
();
return
sb
.
toString
();
}
}
...
@@ -481,12 +519,16 @@ public class ApplyLogEntity extends ApplyLogVo {
...
@@ -481,12 +519,16 @@ public class ApplyLogEntity extends ApplyLogVo {
this
.
oriFormContent
=
""
;
this
.
oriFormContent
=
""
;
this
.
oriFormTemplate
=
""
;
this
.
duplicateUrl
=
""
;
this
.
duplicateUrl
=
""
;
this
.
dupPreview
=
""
;
this
.
dupPreview
=
""
;
this
.
dupFormContent
=
""
;
this
.
dupFormContent
=
""
;
this
.
dupFormTemplate
=
""
;
this
.
generateStatus
=
1
;
this
.
generateStatus
=
1
;
}
}
}
}
\ No newline at end of file
certificate-manager/src/main/java/com/mortals/xhx/module/record/model/ApplyLogQuery.java
View file @
091a205c
...
@@ -4,11 +4,11 @@ import java.util.Date;
...
@@ -4,11 +4,11 @@ import java.util.Date;
import
java.util.List
;
import
java.util.List
;
import
com.mortals.xhx.module.record.model.ApplyLogEntity
;
import
com.mortals.xhx.module.record.model.ApplyLogEntity
;
/**
/**
* 证照申请查询对象
* 证照申请查询对象
*
*
* @author zxfei
* @author zxfei
* @date 2022-10-22
* @date 2022-10-22
*/
*/
public
class
ApplyLogQuery
extends
ApplyLogEntity
{
public
class
ApplyLogQuery
extends
ApplyLogEntity
{
/** 开始 序号,主键,自增长 */
/** 开始 序号,主键,自增长 */
private
Long
idStart
;
private
Long
idStart
;
...
@@ -109,6 +109,9 @@ public class ApplyLogQuery extends ApplyLogEntity {
...
@@ -109,6 +109,9 @@ public class ApplyLogQuery extends ApplyLogEntity {
/** 证照模板正本表单内容 */
/** 证照模板正本表单内容 */
private
List
<
String
>
oriFormContentList
;
private
List
<
String
>
oriFormContentList
;
/** 证照模板正本表单内容 */
private
List
<
String
>
oriFormTemplateList
;
/** 副本附件地址 */
/** 副本附件地址 */
private
List
<
String
>
duplicateUrlList
;
private
List
<
String
>
duplicateUrlList
;
...
@@ -118,6 +121,9 @@ public class ApplyLogQuery extends ApplyLogEntity {
...
@@ -118,6 +121,9 @@ public class ApplyLogQuery extends ApplyLogEntity {
/** 证照模板副本表单内容 */
/** 证照模板副本表单内容 */
private
List
<
String
>
dupFormContentList
;
private
List
<
String
>
dupFormContentList
;
/** 证照模板副本表单内容 */
private
List
<
String
>
dupFormTemplateList
;
/** 开始 生成状态1未生成2正本3副本4正副本 */
/** 开始 生成状态1未生成2正本3副本4正副本 */
private
Integer
generateStatusStart
;
private
Integer
generateStatusStart
;
...
@@ -691,6 +697,21 @@ public class ApplyLogQuery extends ApplyLogEntity {
...
@@ -691,6 +697,21 @@ public class ApplyLogQuery extends ApplyLogEntity {
public
void
setOriFormContentList
(
List
<
String
>
oriFormContentList
){
public
void
setOriFormContentList
(
List
<
String
>
oriFormContentList
){
this
.
oriFormContentList
=
oriFormContentList
;
this
.
oriFormContentList
=
oriFormContentList
;
}
}
/**
* 获取 证照模板正本表单内容
* @return oriFormTemplateList
*/
public
List
<
String
>
getOriFormTemplateList
(){
return
this
.
oriFormTemplateList
;
}
/**
* 设置 证照模板正本表单内容
* @param oriFormTemplateList
*/
public
void
setOriFormTemplateList
(
List
<
String
>
oriFormTemplateList
){
this
.
oriFormTemplateList
=
oriFormTemplateList
;
}
/**
/**
* 获取 副本附件地址
* 获取 副本附件地址
* @return duplicateUrlList
* @return duplicateUrlList
...
@@ -736,6 +757,21 @@ public class ApplyLogQuery extends ApplyLogEntity {
...
@@ -736,6 +757,21 @@ public class ApplyLogQuery extends ApplyLogEntity {
public
void
setDupFormContentList
(
List
<
String
>
dupFormContentList
){
public
void
setDupFormContentList
(
List
<
String
>
dupFormContentList
){
this
.
dupFormContentList
=
dupFormContentList
;
this
.
dupFormContentList
=
dupFormContentList
;
}
}
/**
* 获取 证照模板副本表单内容
* @return dupFormTemplateList
*/
public
List
<
String
>
getDupFormTemplateList
(){
return
this
.
dupFormTemplateList
;
}
/**
* 设置 证照模板副本表单内容
* @param dupFormTemplateList
*/
public
void
setDupFormTemplateList
(
List
<
String
>
dupFormTemplateList
){
this
.
dupFormTemplateList
=
dupFormTemplateList
;
}
/**
/**
* 获取 开始 生成状态1未生成2正本3副本4正副本
* 获取 开始 生成状态1未生成2正本3副本4正副本
* @return generateStatusStart
* @return generateStatusStart
...
@@ -1385,6 +1421,25 @@ public class ApplyLogQuery extends ApplyLogEntity {
...
@@ -1385,6 +1421,25 @@ public class ApplyLogQuery extends ApplyLogEntity {
}
}
/**
* 设置 证照模板正本表单内容
* @param oriFormTemplate
*/
public
ApplyLogQuery
oriFormTemplate
(
String
oriFormTemplate
){
setOriFormTemplate
(
oriFormTemplate
);
return
this
;
}
/**
* 设置 证照模板正本表单内容
* @param oriFormTemplateList
*/
public
ApplyLogQuery
oriFormTemplateList
(
List
<
String
>
oriFormTemplateList
){
this
.
oriFormTemplateList
=
oriFormTemplateList
;
return
this
;
}
/**
/**
* 设置 副本附件地址
* 设置 副本附件地址
* @param duplicateUrl
* @param duplicateUrl
...
@@ -1441,6 +1496,25 @@ public class ApplyLogQuery extends ApplyLogEntity {
...
@@ -1441,6 +1496,25 @@ public class ApplyLogQuery extends ApplyLogEntity {
return
this
;
return
this
;
}
}
/**
* 设置 证照模板副本表单内容
* @param dupFormTemplate
*/
public
ApplyLogQuery
dupFormTemplate
(
String
dupFormTemplate
){
setDupFormTemplate
(
dupFormTemplate
);
return
this
;
}
/**
* 设置 证照模板副本表单内容
* @param dupFormTemplateList
*/
public
ApplyLogQuery
dupFormTemplateList
(
List
<
String
>
dupFormTemplateList
){
this
.
dupFormTemplateList
=
dupFormTemplateList
;
return
this
;
}
/**
/**
* 设置 生成状态1未生成2正本3副本4正副本
* 设置 生成状态1未生成2正本3副本4正副本
* @param generateStatus
* @param generateStatus
...
...
certificate-manager/src/main/java/com/mortals/xhx/module/record/model/vo/ApplyLogVo.java
View file @
091a205c
...
@@ -17,4 +17,9 @@ import java.util.List;
...
@@ -17,4 +17,9 @@ import java.util.List;
public
class
ApplyLogVo
extends
BaseEntityLong
{
public
class
ApplyLogVo
extends
BaseEntityLong
{
/** 查询条件 */
/** 查询条件 */
private
String
query
;
private
String
query
;
/**
* 证照目录编号
*/
private
String
catalogCode
;
}
}
\ No newline at end of file
certificate-manager/src/main/resources/sqlmap/module/record/ApplyLogMapper.xml
View file @
091a205c
This diff is collapsed.
Click to expand it.
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