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
1f94a2db
Commit
1f94a2db
authored
Jun 08, 2023
by
jinxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
许可账号列表新增订单类型查询
parent
0a330f58
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
0 deletions
+23
-0
LicenceOrderPageQDTO.java
...ban/manage/api/dto/qdto/licence/LicenceOrderPageQDTO.java
+12
-0
LicenceOrderPageQO.java
.../gic/haoban/manage/web/qo/licence/LicenceOrderPageQO.java
+4
-0
TabHaobanLicenceOrderMapper.xml
.../resources/mapper/licence/TabHaobanLicenceOrderMapper.xml
+3
-0
LicenceOrderPageQO.java
.../gic/haoban/manage/web/qo/licence/LicenceOrderPageQO.java
+4
-0
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/dto/qdto/licence/LicenceOrderPageQDTO.java
View file @
1f94a2db
...
@@ -74,6 +74,18 @@ public class LicenceOrderPageQDTO extends BasePageInfo implements Serializable
...
@@ -74,6 +74,18 @@ public class LicenceOrderPageQDTO extends BasePageInfo implements Serializable
* 1 好办后台 0 运维后台
* 1 好办后台 0 运维后台
*/
*/
private
Integer
type
;
private
Integer
type
;
/**
* 订单类型,1:购买帐号,2:续期帐号
*/
private
Integer
orderType
;
public
Integer
getOrderType
()
{
return
orderType
;
}
public
void
setOrderType
(
Integer
orderType
)
{
this
.
orderType
=
orderType
;
}
public
Integer
getType
()
{
public
Integer
getType
()
{
return
type
;
return
type
;
...
...
haoban-manage3-operation-web/src/main/java/com/gic/haoban/manage/web/qo/licence/LicenceOrderPageQO.java
View file @
1f94a2db
...
@@ -60,5 +60,9 @@ public class LicenceOrderPageQO extends BasePageInfo implements Serializable {
...
@@ -60,5 +60,9 @@ public class LicenceOrderPageQO extends BasePageInfo implements Serializable {
* 微信订单id
* 微信订单id
*/
*/
private
String
wxOrderId
;
private
String
wxOrderId
;
/**
* 订单类型,1:购买帐号,2:续期帐号
*/
private
Integer
orderType
;
}
}
haoban-manage3-service/src/main/resources/mapper/licence/TabHaobanLicenceOrderMapper.xml
View file @
1f94a2db
...
@@ -250,6 +250,9 @@
...
@@ -250,6 +250,9 @@
<if
test=
"type != null and type ==1 "
>
<if
test=
"type != null and type ==1 "
>
and wx_enterprise_id = #{wxEnterpriseId}
and wx_enterprise_id = #{wxEnterpriseId}
</if>
</if>
<if
test=
"orderType != null"
>
and order_type = #{orderType}
</if>
order by create_time desc
order by create_time desc
</select>
</select>
...
...
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/qo/licence/LicenceOrderPageQO.java
View file @
1f94a2db
...
@@ -48,5 +48,9 @@ public class LicenceOrderPageQO extends BasePageInfo implements Serializable {
...
@@ -48,5 +48,9 @@ public class LicenceOrderPageQO extends BasePageInfo implements Serializable {
* 订单创建结束时间
* 订单创建结束时间
*/
*/
private
String
endTime
;
private
String
endTime
;
/**
* 订单类型,1:购买帐号,2:续期帐号
*/
private
Integer
orderType
;
}
}
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