Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
荆蔚杰
/
java.archive
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
8af4d009
authored
2021-11-29 10:49:06 +0800
by
荆蔚杰
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
新增权利人查询字段
1 parent
8596309f
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletions
src/main/java/com/pashanhoo/archive/entity/vo/AddDgArchivesRequest.java
src/main/java/com/pashanhoo/archive/entity/vo/SearchArchiveRequest.java
src/main/resources/mapper/DgArchivesMapper.xml
src/main/java/com/pashanhoo/archive/entity/vo/AddDgArchivesRequest.java
View file @
8af4d00
...
...
@@ -164,5 +164,4 @@ public class AddDgArchivesRequest implements Serializable {
@ApiModelProperty
(
name
=
"daly"
,
value
=
"档案来源(1:不动产归档,2:存量档案补录)"
)
private
String
daly
;
}
...
...
src/main/java/com/pashanhoo/archive/entity/vo/SearchArchiveRequest.java
View file @
8af4d00
...
...
@@ -66,4 +66,10 @@ public class SearchArchiveRequest extends PageInfo implements Serializable {
*/
@ApiModelProperty
(
name
=
"qllx"
,
value
=
"权利类型"
)
private
String
qllx
;
/**
* 权利人
*/
@ApiModelProperty
(
name
=
"qlr"
,
value
=
"权利人"
)
private
String
qlr
;
}
...
...
src/main/resources/mapper/DgArchivesMapper.xml
View file @
8af4d00
...
...
@@ -86,6 +86,9 @@
<if
test=
"request.qllx != null and request.qllx != ''"
>
and QLLX = #{request.qllx,jdbcType=VARCHAR}
</if>
<if
test=
"request.qlr != null and request.qlr != ''"
>
and QLR = #{request.qlr,jdbcType=VARCHAR}
</if>
</where>
</select>
...
...
Please
register
or
sign in
to post a comment