Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mall-server
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
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
yimu
mall-server
Commits
8da64938
Commit
8da64938
authored
Mar 08, 2022
by
wulixian
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' into 'test'
去掉异常继承 See merge request
!10
parents
5306e759
7012f863
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
84 deletions
+2
-84
MerchantIntegral.java
...l/server/admin/finance_center/model/MerchantIntegral.java
+1
-1
MerchantIntegral.java
...zm/mall/server/front/merchant/model/MerchantIntegral.java
+1
-1
PlatformIntegral.java
...zm/mall/server/front/merchant/model/PlatformIntegral.java
+0
-82
No files found.
mall-server-admin/src/main/java/com/fzm/mall/server/admin/finance_center/model/MerchantIntegral.java
View file @
8da64938
...
...
@@ -21,7 +21,7 @@ import lombok.EqualsAndHashCode;
@EqualsAndHashCode
(
callSuper
=
false
)
@TableName
(
"merchant_integral"
)
@ApiModel
(
value
=
"MerchantIntegral"
,
description
=
"积分"
)
public
class
MerchantIntegral
extends
PlatformIntegral
implements
Serializable
{
public
class
MerchantIntegral
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
...
...
mall-server-front/src/main/java/com/fzm/mall/server/front/merchant/model/MerchantIntegral.java
View file @
8da64938
...
...
@@ -19,7 +19,7 @@ import java.math.BigDecimal;
@EqualsAndHashCode
(
callSuper
=
false
)
@TableName
(
"merchant_integral"
)
@ApiModel
(
value
=
"MerchantIntegral"
,
description
=
"积分"
)
public
class
MerchantIntegral
extends
PlatformIntegral
implements
Serializable
{
public
class
MerchantIntegral
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
...
...
mall-server-front/src/main/java/com/fzm/mall/server/front/merchant/model/PlatformIntegral.java
deleted
100644 → 0
View file @
5306e759
package
com
.
fzm
.
mall
.
server
.
front
.
merchant
.
model
;
import
com.baomidou.mybatisplus.annotation.*
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
java.io.Serializable
;
import
java.math.BigDecimal
;
/**
* <p>
*
* </p>
*
* @author fzm
* @since 2021-05-08
*/
@Data
@EqualsAndHashCode
(
callSuper
=
false
)
@TableName
(
"platform_integral"
)
@ApiModel
(
value
=
"PlatformIntegral对象"
,
description
=
""
)
public
class
PlatformIntegral
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
@ApiModelProperty
(
value
=
"自增主键"
)
@TableId
(
value
=
"id"
,
type
=
IdType
.
AUTO
)
private
Long
id
;
@ApiModelProperty
(
value
=
"标识"
)
private
String
label
;
@ApiModelProperty
(
value
=
"名称"
)
private
String
name
;
@ApiModelProperty
(
value
=
"积分账户"
)
private
String
account
;
@ApiModelProperty
(
value
=
"回收地址"
)
private
String
recoverAddr
;
@ApiModelProperty
(
value
=
"账户私钥"
)
private
String
addrKey
;
@ApiModelProperty
(
value
=
"积分价格"
)
private
BigDecimal
price
;
@ApiModelProperty
(
value
=
"发行量"
)
private
BigDecimal
issueNum
;
@ApiModelProperty
(
value
=
"余额"
)
private
BigDecimal
balanceNum
;
@ApiModelProperty
(
value
=
"类别(1.平台积分 2.平台基础积分)"
)
private
Integer
type
;
@ApiModelProperty
(
value
=
"状态(1.可用 2.禁用)"
)
private
Integer
status
;
@ApiModelProperty
(
value
=
"创建时间"
)
@TableField
(
fill
=
FieldFill
.
INSERT
)
private
Long
createTime
;
@ApiModelProperty
(
value
=
"更新时间"
)
@TableField
(
fill
=
FieldFill
.
INSERT_UPDATE
)
private
Long
updateTime
;
public
PlatformIntegral
()
{
}
public
PlatformIntegral
(
String
label
,
String
name
,
BigDecimal
price
,
BigDecimal
issueNum
,
BigDecimal
balanceNum
,
Integer
type
,
Integer
status
)
{
this
.
label
=
label
;
this
.
name
=
name
;
this
.
price
=
price
;
this
.
issueNum
=
issueNum
;
this
.
balanceNum
=
balanceNum
;
this
.
type
=
type
;
this
.
status
=
status
;
}
}
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