Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
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
haoban3.0
haoban-manage3.0
Commits
ff755c4a
Commit
ff755c4a
authored
Jul 15, 2022
by
墨竹
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/developer' into developer
parents
d828079a
3e78b881
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
19 deletions
+30
-19
WxUserAddLogSearchQDTO.java
...haoban/manage/api/dto/qdto/hm/WxUserAddLogSearchQDTO.java
+13
-13
WxUserAddLogMapper.xml
...rvice/src/main/resources/mapper/hm/WxUserAddLogMapper.xml
+17
-6
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/dto/qdto/hm/WxUserAddLogSearchQDTO.java
View file @
ff755c4a
...
@@ -12,23 +12,31 @@ public class WxUserAddLogSearchQDTO extends BasePageInfo implements Serializable
...
@@ -12,23 +12,31 @@ public class WxUserAddLogSearchQDTO extends BasePageInfo implements Serializable
*/
*/
private
static
final
long
serialVersionUID
=
8305835283985272207L
;
private
static
final
long
serialVersionUID
=
8305835283985272207L
;
private
Lo
ng
wxEnterpriseId
;
private
Stri
ng
wxEnterpriseId
;
private
Lo
ng
enterpriseId
;
private
Stri
ng
enterpriseId
;
private
Long
linkId
;
private
Long
linkId
;
private
Long
hmId
;
private
Long
hmId
;
private
String
clerkId
;
private
String
clerkId
;
private
Date
startTime
;
private
Date
startTime
;
private
Date
endTime
;
private
Date
endTime
;
private
Integer
addChannel
;
private
Integer
addChannel
;
public
Lo
ng
getWxEnterpriseId
()
{
public
Stri
ng
getWxEnterpriseId
()
{
return
wxEnterpriseId
;
return
wxEnterpriseId
;
}
}
public
Lo
ng
getEnterpriseId
()
{
public
Stri
ng
getEnterpriseId
()
{
return
enterpriseId
;
return
enterpriseId
;
}
}
public
void
setWxEnterpriseId
(
String
wxEnterpriseId
)
{
this
.
wxEnterpriseId
=
wxEnterpriseId
;
}
public
void
setEnterpriseId
(
String
enterpriseId
)
{
this
.
enterpriseId
=
enterpriseId
;
}
public
Long
getLinkId
()
{
public
Long
getLinkId
()
{
return
linkId
;
return
linkId
;
}
}
...
@@ -53,14 +61,6 @@ public class WxUserAddLogSearchQDTO extends BasePageInfo implements Serializable
...
@@ -53,14 +61,6 @@ public class WxUserAddLogSearchQDTO extends BasePageInfo implements Serializable
return
addChannel
;
return
addChannel
;
}
}
public
void
setWxEnterpriseId
(
Long
wxEnterpriseId
)
{
this
.
wxEnterpriseId
=
wxEnterpriseId
;
}
public
void
setEnterpriseId
(
Long
enterpriseId
)
{
this
.
enterpriseId
=
enterpriseId
;
}
public
void
setLinkId
(
Long
linkId
)
{
public
void
setLinkId
(
Long
linkId
)
{
this
.
linkId
=
linkId
;
this
.
linkId
=
linkId
;
}
}
...
...
haoban-manage3-service/src/main/resources/mapper/hm/WxUserAddLogMapper.xml
View file @
ff755c4a
...
@@ -183,13 +183,23 @@
...
@@ -183,13 +183,23 @@
status_flag != 0 order by create_time desc limit 1
status_flag != 0 order by create_time desc limit 1
</select>
</select>
<select
id=
"listForPage"
<select
id=
"listForPage"
parameterType=
"com.gic.haoban.manage.api.dto.qdto.hm.WxUserAddLogSearchQDTO"
resultMap=
"result-map-tabHaobanWxUserAddLog"
>
parameterType=
"com.gic.haoban.manage.api.dto.qdto.hm.WxUserAddLogSearchQDTO"
resultMap=
"result-map-tabHaobanWxUserAddLog"
>
select
select
<include
refid=
"Base_Column_List"
/>
<include
refid=
"Base_Column_List"
/>
from tab_haoban_wx_user_add_log where 1
from tab_haoban_wx_user_add_log where wx_enterprise_id = #{enterpriseId}
and status_flag != 0 order by
<if
test=
"null != enterpriseId"
>
create_time desc
and enterprise_id = #{enterpriseId}
</if>
<if
test=
"null != linkId"
>
and link_id = #{linkId}
</if>
<if
test=
"null != hmId"
>
and hm_id = #{hmId}
</if>
<if
test=
"null != clerkId"
>
and clerk_id = #{clerkId}
</if>
and create_time >= #{startTime} and create_time
<![CDATA[<=]]>
#{endTime}
and status_flag != 0 order by create_time desc
</select>
</select>
</mapper>
</mapper>
\ 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