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
11ff2c40
Commit
11ff2c40
authored
Mar 14, 2023
by
jinxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
企业微信许可账号购买
parent
5d617f32
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
80 additions
and
21 deletions
+80
-21
TabHaobanLicenceOrder.java
.../manage/service/entity/licence/TabHaobanLicenceOrder.java
+4
-1
TabHaobanLicenceOrderMapper.xml
.../resources/mapper/licence/TabHaobanLicenceOrderMapper.xml
+7
-3
LicenceOrderProgressVO.java
.../haoban/manage/web/vo/licence/LicenceOrderProgressVO.java
+53
-0
LicenceOrderVO.java
.../com/gic/haoban/manage/web/vo/licence/LicenceOrderVO.java
+16
-17
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/entity/licence/TabHaobanLicenceOrder.java
View file @
11ff2c40
...
...
@@ -154,6 +154,9 @@ public class TabHaobanLicenceOrder implements Serializable {
* 创建人名称
*/
private
String
creatorName
;
/**
* 到期时间
*/
private
Date
expireTime
;
}
haoban-manage3-service/src/main/resources/mapper/licence/TabHaobanLicenceOrderMapper.xml
View file @
11ff2c40
...
...
@@ -29,6 +29,7 @@
<result
column=
"update_time"
property=
"updateTime"
/>
<result
column=
"creator_id"
property=
"creatorId"
/>
<result
column=
"creator_name"
property=
"creatorName"
/>
<result
column=
"expire_time"
property=
"expireTime"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
order_id,
...
...
@@ -57,7 +58,8 @@
create_time,
update_time,
creator_id,
creator_name
creator_name,
expire_time
</sql>
<!-- ===================== 新增 ======================== -->
<insert
id=
"insert"
parameterType=
"com.gic.haoban.manage.service.entity.licence.TabHaobanLicenceOrder"
useGeneratedKeys=
"true"
keyProperty=
"id"
>
...
...
@@ -89,7 +91,8 @@
create_time,
update_time,
creator_id,
creator_name
creator_name,
expire_time
)VALUES(
#{orderId,jdbcType=BIGINT},
#{enterpriseId,jdbcType=VARCHAR},
...
...
@@ -117,7 +120,8 @@
now(),
now(),
#{creatorId,jdbcType=VARCHAR},
#{creatorName,jdbcType=VARCHAR}
#{creatorName,jdbcType=VARCHAR},
#{expireTime,jdbcType=VARCHAR}
)
]]>
</insert>
...
...
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/vo/licence/LicenceOrderProgressVO.java
0 → 100644
View file @
11ff2c40
package
com
.
gic
.
haoban
.
manage
.
web
.
vo
.
licence
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
* <p>
*
* </p>
*
* @author jx
* @since 2023-03-09
*/
@Data
@EqualsAndHashCode
(
callSuper
=
false
)
public
class
LicenceOrderProgressVO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* 主键id
*/
private
Long
id
;
/**
* 订单状态
*/
private
String
orderStatus
;
/**
* 标记字段 1好办后台
*/
private
Integer
type
;
/**
* 上传凭证url
*/
private
String
voucher
;
/**
* 原因
*/
private
String
reason
;
/**
* 创建时间
*/
private
Date
createTime
;
}
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/vo/licence/LicenceOrderVO.java
View file @
11ff2c40
...
...
@@ -5,6 +5,7 @@ import lombok.EqualsAndHashCode;
import
java.io.Serializable
;
import
java.util.Date
;
import
java.util.List
;
/**
* <p>
...
...
@@ -29,11 +30,18 @@ public class LicenceOrderVO implements Serializable {
* gic商户Id
*/
private
String
enterpriseId
;
/**
* gic品牌名称
*/
private
String
enterpriseName
;
/**
* wx企业Id
*/
private
String
wxEnterpriseId
;
/**
* 微信商户名称
*/
private
String
wxEnterpriseName
;
/**
* 订单类型,1:购买帐号,2:续期帐号
...
...
@@ -91,7 +99,7 @@ public class LicenceOrderVO implements Serializable {
private
String
orderStatusReason
;
/**
* 支付类型为1:微信支付时间 2:上传凭证时间
* 支付
时间 支付
类型为1:微信支付时间 2:上传凭证时间
*/
private
Date
payTime
;
...
...
@@ -131,29 +139,20 @@ public class LicenceOrderVO implements Serializable {
private
String
reason
;
/**
* 逻辑删除,0未删除,1删除
*/
private
Integer
deleteFlag
;
/**
* 创建时间
*/
private
Date
createTime
;
/**
*
更新
时间
*
到期
时间
*/
private
Date
updateTime
;
private
Date
expireTime
;
/**
*
创建人
*
当前时间
*/
private
String
creatorId
;
private
Date
nowTime
;
/**
*
创建人名称
*
订单进度list
*/
private
String
creatorName
;
private
List
<
LicenceOrderProgressVO
>
OrderProgressList
;
}
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