Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
T
tcm-system
Project
Project
Details
Activity
Releases
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
TCM
tcm-system
Commits
92ee709e
Commit
92ee709e
authored
Jul 17, 2019
by
zjy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user/role/tright 7.17
parent
e9d293f5
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
361 additions
and
37 deletions
+361
-37
PangdingManagementController.java
...eb/authority/controller/PangdingManagementController.java
+6
-0
PayFeign.java
src/main/java/com/pangding/web/authority/feign/PayFeign.java
+12
-0
CompanyService.java
...va/com/pangding/web/authority/service/CompanyService.java
+2
-0
CompanyServiceImpl.java
...ngding/web/authority/service/impl/CompanyServiceImpl.java
+39
-0
RegisterServiceImpl.java
...gding/web/authority/service/impl/RegisterServiceImpl.java
+11
-1
CompanyDivideRuleVo.java
...va/com/pangding/web/authority/vo/CompanyDivideRuleVo.java
+33
-36
CompanyVo.java
src/main/java/com/pangding/web/authority/vo/CompanyVo.java
+11
-0
CompanyDivideRuleGetReqVo.java
...ing/web/authority/vo/reqvo/CompanyDivideRuleGetReqVo.java
+17
-0
CompanyReqVo.java
...ava/com/pangding/web/authority/vo/reqvo/CompanyReqVo.java
+13
-0
ExamineConfigReqVo.java
...m/pangding/web/authority/vo/reqvo/ExamineConfigReqVo.java
+217
-0
No files found.
src/main/java/com/pangding/web/authority/controller/PangdingManagementController.java
View file @
92ee709e
...
@@ -298,4 +298,10 @@ public class PangdingManagementController {
...
@@ -298,4 +298,10 @@ public class PangdingManagementController {
CheckerHelper
.
newInstance
().
notBlankCheck
(
"companyList"
,
req
.
getCompanyIdList
()).
checkException
();
CheckerHelper
.
newInstance
().
notBlankCheck
(
"companyList"
,
req
.
getCompanyIdList
()).
checkException
();
return
ResponseResult
.
result
(
companyServiceImpl
.
findCompanyDivideInfo
(
req
));
return
ResponseResult
.
result
(
companyServiceImpl
.
findCompanyDivideInfo
(
req
));
}
}
@RequestMapping
(
value
=
"/examineConfig"
,
method
=
RequestMethod
.
POST
,
produces
=
MediaType
.
APPLICATION_JSON_UTF8_VALUE
)
public
ResponseResult
examineConfig
(
@RequestBody
ExamineConfigReqVo
reqVo
){
companyServiceImpl
.
examineConfig
(
reqVo
);
return
new
ResponseResult
();
}
}
}
src/main/java/com/pangding/web/authority/feign/PayFeign.java
View file @
92ee709e
...
@@ -7,6 +7,9 @@ import org.springframework.cloud.openfeign.FeignClient;
...
@@ -7,6 +7,9 @@ import org.springframework.cloud.openfeign.FeignClient;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
javax.servlet.http.HttpServletResponse
;
import
java.io.IOException
;
/**
/**
* @Author zhangjinyao
* @Author zhangjinyao
* @create 2019/6/2 18:06
* @create 2019/6/2 18:06
...
@@ -37,4 +40,13 @@ public interface PayFeign {
...
@@ -37,4 +40,13 @@ public interface PayFeign {
*/
*/
@RequestMapping
(
value
=
"/unbindBankCard"
)
@RequestMapping
(
value
=
"/unbindBankCard"
)
public
ResponseResult
<
CompanyBankReqVo
>
unbindBankCard
(
@RequestBody
CompanyBankReqVo
req
);
public
ResponseResult
<
CompanyBankReqVo
>
unbindBankCard
(
@RequestBody
CompanyBankReqVo
req
);
/**
* 获取签约地址
* @param req
* @return
* @throws IOException
*/
@RequestMapping
(
value
=
"/sign"
)
ResponseResult
<
CompanyReqVo
>
sign
(
@RequestBody
CompanyReqVo
req
)
throws
IOException
;
}
}
src/main/java/com/pangding/web/authority/service/CompanyService.java
View file @
92ee709e
...
@@ -172,4 +172,6 @@ public interface CompanyService{
...
@@ -172,4 +172,6 @@ public interface CompanyService{
* @return
* @return
*/
*/
CompanyVo
checkInvitationCode
(
CheckInvitationCodeReqVo
reqVo
);
CompanyVo
checkInvitationCode
(
CheckInvitationCodeReqVo
reqVo
);
void
examineConfig
(
ExamineConfigReqVo
reqVo
);
}
}
src/main/java/com/pangding/web/authority/service/impl/CompanyServiceImpl.java
View file @
92ee709e
...
@@ -828,4 +828,43 @@ public class CompanyServiceImpl implements CompanyService {
...
@@ -828,4 +828,43 @@ public class CompanyServiceImpl implements CompanyService {
return
companyDao
.
load
(
companyGetReqVo
,
CompanyVo
.
class
);
return
companyDao
.
load
(
companyGetReqVo
,
CompanyVo
.
class
);
}
}
@Override
@Transactional
(
rollbackFor
=
Exception
.
class
)
public
void
examineConfig
(
ExamineConfigReqVo
reqVo
)
{
/*更新公司表*/
CompanyGetReqVo
companyGetReqVo
=
new
CompanyGetReqVo
();
companyGetReqVo
.
setId
(
reqVo
.
getCompanyId
());
CompanyVo
companyVo
=
companyDao
.
load
(
companyGetReqVo
,
CompanyVo
.
class
);
companyVo
.
setExamineStatus
(
reqVo
.
getExamineStatus
());
companyVo
.
setExamineFailedReason
(
reqVo
.
getExamineFailedReason
());
companyDao
.
update
(
companyVo
);
/*更新公司扩展表*/
CompanyExtendGetReqVo
companyExtendGetReqVo
=
new
CompanyExtendGetReqVo
();
companyExtendGetReqVo
.
setId
(
reqVo
.
getCompanyId
());
CompanyExtendVo
companyExtendVo
=
companyExtendDaoImpl
.
load
(
companyExtendGetReqVo
,
CompanyExtendVo
.
class
);
companyExtendVo
.
setWithdrawMoney
(
reqVo
.
getWithdrawMoney
());
companyExtendVo
.
setWithdrawRule
(
reqVo
.
getWithdrawRule
());
companyExtendVo
.
setWithdrawFee
(
reqVo
.
getWithdrawFee
());
companyExtendVo
.
setQrCodeType
(
reqVo
.
getQrCodeType
());
companyExtendDaoImpl
.
update
(
companyExtendVo
);
/*新增或更新pd_company_divide_rule表*/
CompanyDivideRuleVo
companyDivideRuleVo
=
new
CompanyDivideRuleVo
();
ObjectHelper
.
writeWithFrom
(
companyDivideRuleVo
,
reqVo
);
CompanyDivideRuleGetReqVo
companyDivideRuleGetReqVo
=
new
CompanyDivideRuleGetReqVo
();
companyDivideRuleGetReqVo
.
setCompanyId
(
reqVo
.
getCompanyId
());
CompanyDivideRuleVo
companyDivideRuleResVo
=
companyDivideRuleDao
.
load
(
companyDivideRuleGetReqVo
,
CompanyDivideRuleVo
.
class
);
if
(
null
==
companyDivideRuleResVo
){
companyDivideRuleVo
.
setCompanyDivideId
(
StringHelper
.
getNewID
());
companyDivideRuleDao
.
create
(
companyDivideRuleVo
);
}
else
{
companyDivideRuleVo
.
setCompanyDivideId
(
companyDivideRuleResVo
.
getCompanyDivideId
());
companyDivideRuleVo
.
setFee
(
companyDivideRuleResVo
.
getFee
());
companyDivideRuleVo
.
setBonusType
(
companyDivideRuleResVo
.
getBonusType
());
companyDivideRuleVo
.
setBonusValue
(
companyDivideRuleResVo
.
getBonusValue
());
companyDivideRuleVo
.
setRealBonusValue
(
companyDivideRuleResVo
.
getRealBonusValue
());
companyDivideRuleVo
.
setBonusExplain
(
companyDivideRuleResVo
.
getBonusExplain
());
companyDivideRuleDao
.
update
(
companyDivideRuleVo
);
}
}
}
}
src/main/java/com/pangding/web/authority/service/impl/RegisterServiceImpl.java
View file @
92ee709e
...
@@ -395,9 +395,19 @@ public class RegisterServiceImpl implements RegisterService {
...
@@ -395,9 +395,19 @@ public class RegisterServiceImpl implements RegisterService {
}
}
/*判断电子签约状态,若不等于1,则跳转签约页面*/
/*判断电子签约状态,若不等于1,则跳转签约页面*/
else
if
(
companyVo
.
getSigningStatus
()
!=
CompanyConstant
.
COMPANY_STATUS_SIGN_success
){
else
if
(
companyVo
.
getSigningStatus
()
!=
CompanyConstant
.
COMPANY_STATUS_SIGN_success
){
CompanyReqVo
companyReqVo
=
new
CompanyReqVo
();
companyReqVo
.
setId
(
companyVo
.
getId
());
ResponseResult
result
=
new
ResponseResult
();
try
{
result
=
payFeign
.
sign
(
companyReqVo
);
}
catch
(
Exception
e
){
e
.
printStackTrace
();
throw
new
CodeException
(
"跳转签约页面失败,请重试"
);
}
CompanyReqVo
companyReqVo1
=
(
CompanyReqVo
)
result
.
getData
();
resVo
.
setCode
(
"04"
);
resVo
.
setCode
(
"04"
);
resVo
.
setMsg
(
"未签约,跳转签约页面"
);
resVo
.
setMsg
(
"未签约,跳转签约页面"
);
resVo
.
setUrl
(
"TODO"
);
resVo
.
setUrl
(
companyReqVo1
.
getSignUrl
()
);
return
resVo
;
return
resVo
;
}
}
...
...
src/main/java/com/pangding/web/authority/vo/CompanyDivideRuleVo.java
View file @
92ee709e
...
@@ -12,48 +12,45 @@ public class CompanyDivideRuleVo{
...
@@ -12,48 +12,45 @@ public class CompanyDivideRuleVo{
private
String
companyId
;
private
String
companyId
;
@TableAnnotation
(
"source_value"
)
@TableAnnotation
(
"source_value"
)
private
d
ouble
sourceValue
;
private
D
ouble
sourceValue
;
@TableAnnotation
(
"real_source_value"
)
@TableAnnotation
(
"real_source_value"
)
private
d
ouble
realSourceValue
;
private
D
ouble
realSourceValue
;
@TableAnnotation
(
"source_explain"
)
@TableAnnotation
(
"source_explain"
)
private
String
sourceExplain
;
private
String
sourceExplain
;
@TableAnnotation
(
"pass_value"
)
@TableAnnotation
(
"pass_value"
)
private
d
ouble
passValue
;
private
D
ouble
passValue
;
@TableAnnotation
(
"real_pass_value"
)
@TableAnnotation
(
"real_pass_value"
)
private
d
ouble
realPassValue
;
private
D
ouble
realPassValue
;
@TableAnnotation
(
"pass_explain"
)
@TableAnnotation
(
"pass_explain"
)
private
String
passExplain
;
private
String
passExplain
;
@TableAnnotation
(
"super_value"
)
@TableAnnotation
(
"super_value"
)
private
d
ouble
superValue
;
private
D
ouble
superValue
;
@TableAnnotation
(
"real_super_value"
)
@TableAnnotation
(
"real_super_value"
)
private
d
ouble
realSuperValue
;
private
D
ouble
realSuperValue
;
@TableAnnotation
(
"super_explain"
)
@TableAnnotation
(
"super_explain"
)
private
String
superExplain
;
private
String
superExplain
;
private
d
ouble
fee
;
private
D
ouble
fee
;
@TableAnnotation
(
"bonus_type"
)
@TableAnnotation
(
"bonus_type"
)
private
int
bonusType
;
private
Integer
bonusType
;
@TableAnnotation
(
"bonus_value"
)
@TableAnnotation
(
"bonus_value"
)
private
d
ouble
bonusValue
;
private
D
ouble
bonusValue
;
@TableAnnotation
(
"real_bonus_value"
)
@TableAnnotation
(
"real_bonus_value"
)
private
d
ouble
realBonusValue
;
private
D
ouble
realBonusValue
;
@TableAnnotation
(
"bonus_explain"
)
@TableAnnotation
(
"bonus_explain"
)
private
String
bonusExlain
;
private
String
bonusExplain
;
@TableAnnotation
(
"divide_status"
)
private
int
divideStatus
;
public
String
getCompanyDivideId
()
{
public
String
getCompanyDivideId
()
{
return
companyDivideId
;
return
companyDivideId
;
...
@@ -71,19 +68,19 @@ public class CompanyDivideRuleVo{
...
@@ -71,19 +68,19 @@ public class CompanyDivideRuleVo{
this
.
companyId
=
companyId
;
this
.
companyId
=
companyId
;
}
}
public
d
ouble
getSourceValue
()
{
public
D
ouble
getSourceValue
()
{
return
sourceValue
;
return
sourceValue
;
}
}
public
void
setSourceValue
(
d
ouble
sourceValue
)
{
public
void
setSourceValue
(
D
ouble
sourceValue
)
{
this
.
sourceValue
=
sourceValue
;
this
.
sourceValue
=
sourceValue
;
}
}
public
d
ouble
getRealSourceValue
()
{
public
D
ouble
getRealSourceValue
()
{
return
realSourceValue
;
return
realSourceValue
;
}
}
public
void
setRealSourceValue
(
d
ouble
realSourceValue
)
{
public
void
setRealSourceValue
(
D
ouble
realSourceValue
)
{
this
.
realSourceValue
=
realSourceValue
;
this
.
realSourceValue
=
realSourceValue
;
}
}
...
@@ -95,19 +92,19 @@ public class CompanyDivideRuleVo{
...
@@ -95,19 +92,19 @@ public class CompanyDivideRuleVo{
this
.
sourceExplain
=
sourceExplain
;
this
.
sourceExplain
=
sourceExplain
;
}
}
public
d
ouble
getPassValue
()
{
public
D
ouble
getPassValue
()
{
return
passValue
;
return
passValue
;
}
}
public
void
setPassValue
(
d
ouble
passValue
)
{
public
void
setPassValue
(
D
ouble
passValue
)
{
this
.
passValue
=
passValue
;
this
.
passValue
=
passValue
;
}
}
public
d
ouble
getRealPassValue
()
{
public
D
ouble
getRealPassValue
()
{
return
realPassValue
;
return
realPassValue
;
}
}
public
void
setRealPassValue
(
d
ouble
realPassValue
)
{
public
void
setRealPassValue
(
D
ouble
realPassValue
)
{
this
.
realPassValue
=
realPassValue
;
this
.
realPassValue
=
realPassValue
;
}
}
...
@@ -119,11 +116,11 @@ public class CompanyDivideRuleVo{
...
@@ -119,11 +116,11 @@ public class CompanyDivideRuleVo{
this
.
passExplain
=
passExplain
;
this
.
passExplain
=
passExplain
;
}
}
public
d
ouble
getSuperValue
()
{
public
D
ouble
getSuperValue
()
{
return
superValue
;
return
superValue
;
}
}
public
void
setSuperValue
(
d
ouble
superValue
)
{
public
void
setSuperValue
(
D
ouble
superValue
)
{
this
.
superValue
=
superValue
;
this
.
superValue
=
superValue
;
}
}
...
@@ -143,43 +140,43 @@ public class CompanyDivideRuleVo{
...
@@ -143,43 +140,43 @@ public class CompanyDivideRuleVo{
this
.
superExplain
=
superExplain
;
this
.
superExplain
=
superExplain
;
}
}
public
d
ouble
getFee
()
{
public
D
ouble
getFee
()
{
return
fee
;
return
fee
;
}
}
public
void
setFee
(
d
ouble
fee
)
{
public
void
setFee
(
D
ouble
fee
)
{
this
.
fee
=
fee
;
this
.
fee
=
fee
;
}
}
public
int
getBonusType
()
{
public
Integer
getBonusType
()
{
return
bonusType
;
return
bonusType
;
}
}
public
void
setBonusType
(
int
bonusType
)
{
public
void
setBonusType
(
Integer
bonusType
)
{
this
.
bonusType
=
bonusType
;
this
.
bonusType
=
bonusType
;
}
}
public
d
ouble
getBonusValue
()
{
public
D
ouble
getBonusValue
()
{
return
bonusValue
;
return
bonusValue
;
}
}
public
void
setBonusValue
(
d
ouble
bonusValue
)
{
public
void
setBonusValue
(
D
ouble
bonusValue
)
{
this
.
bonusValue
=
bonusValue
;
this
.
bonusValue
=
bonusValue
;
}
}
public
d
ouble
getRealBonusValue
()
{
public
D
ouble
getRealBonusValue
()
{
return
realBonusValue
;
return
realBonusValue
;
}
}
public
void
setRealBonusValue
(
d
ouble
realBonusValue
)
{
public
void
setRealBonusValue
(
D
ouble
realBonusValue
)
{
this
.
realBonusValue
=
realBonusValue
;
this
.
realBonusValue
=
realBonusValue
;
}
}
public
String
getBonusExlain
()
{
public
String
getBonusEx
p
lain
()
{
return
bonusExlain
;
return
bonusEx
p
lain
;
}
}
public
void
setBonusEx
lain
(
String
bonusEx
lain
)
{
public
void
setBonusEx
plain
(
String
bonusExp
lain
)
{
this
.
bonusEx
lain
=
bonusEx
lain
;
this
.
bonusEx
plain
=
bonusExp
lain
;
}
}
}
}
src/main/java/com/pangding/web/authority/vo/CompanyVo.java
View file @
92ee709e
...
@@ -69,6 +69,17 @@ public class CompanyVo extends BaseVo implements InitDao {
...
@@ -69,6 +69,17 @@ public class CompanyVo extends BaseVo implements InitDao {
@TableAnnotation
(
"examine_status"
)
@TableAnnotation
(
"examine_status"
)
private
Integer
examineStatus
;
private
Integer
examineStatus
;
@TableAnnotation
(
"examine_failed_reason"
)
private
String
examineFailedReason
;
public
String
getExamineFailedReason
()
{
return
examineFailedReason
;
}
public
void
setExamineFailedReason
(
String
examineFailedReason
)
{
this
.
examineFailedReason
=
examineFailedReason
;
}
public
Integer
getExamineStatus
()
{
public
Integer
getExamineStatus
()
{
return
examineStatus
;
return
examineStatus
;
}
}
...
...
src/main/java/com/pangding/web/authority/vo/reqvo/CompanyDivideRuleGetReqVo.java
0 → 100644
View file @
92ee709e
package
com
.
pangding
.
web
.
authority
.
vo
.
reqvo
;
/**
* @Author zhangjinyao
* @create 2019/7/17 17:34
*/
public
class
CompanyDivideRuleGetReqVo
{
private
String
companyId
;
public
String
getCompanyId
()
{
return
companyId
;
}
public
void
setCompanyId
(
String
companyId
)
{
this
.
companyId
=
companyId
;
}
}
src/main/java/com/pangding/web/authority/vo/reqvo/CompanyReqVo.java
View file @
92ee709e
...
@@ -82,6 +82,11 @@ public class CompanyReqVo {
...
@@ -82,6 +82,11 @@ public class CompanyReqVo {
*/
*/
private
int
signingStatus
;
private
int
signingStatus
;
/**
* 签约地址
*/
private
String
signUrl
;
/**
/**
* 公司状态0初始化状态,1创建会员成功,2绑定手机,3企业实名认证成功,
* 公司状态0初始化状态,1创建会员成功,2绑定手机,3企业实名认证成功,
4绑定支付密码,5公司实名认证中,6公司实名认证错误,
4绑定支付密码,5公司实名认证中,6公司实名认证错误,
...
@@ -230,6 +235,14 @@ public class CompanyReqVo {
...
@@ -230,6 +235,14 @@ public class CompanyReqVo {
this
.
signingStatus
=
signingStatus
;
this
.
signingStatus
=
signingStatus
;
}
}
public
String
getSignUrl
()
{
return
signUrl
;
}
public
void
setSignUrl
(
String
signUrl
)
{
this
.
signUrl
=
signUrl
;
}
public
int
getStatus
()
{
public
int
getStatus
()
{
return
status
;
return
status
;
}
}
...
...
src/main/java/com/pangding/web/authority/vo/reqvo/ExamineConfigReqVo.java
0 → 100644
View file @
92ee709e
package
com
.
pangding
.
web
.
authority
.
vo
.
reqvo
;
import
com.yanzuoguang.dao.TableAnnotation
;
/**
* @Author zhangjinyao
* @create 2019/7/17 16:46
*/
public
class
ExamineConfigReqVo
{
/**
* 公司id
*/
private
String
companyId
;
/**
* 入口比例
*/
private
Double
sourceValue
;
/**
* 实际入口比例
*/
private
Double
realSourceValue
;
/**
* 入口比例说明
*/
private
String
sourceExplain
;
/**
* 过境比例
*/
private
Double
passValue
;
/**
* 实际过境比例
*/
private
Double
realPassValue
;
/**
* 过境比例说明
*/
private
String
passExplain
;
/**
* 上级比例
*/
private
Double
superValue
;
/**
* 实际上级比例
*/
private
Double
realSuperValue
;
/**
* 上级比例说明
*/
private
String
superExplain
;
/**
* 限额
*/
private
Double
withdrawMoney
;
/**
* 提现规则(0自动 ,1手动)
*/
private
Integer
withdrawRule
;
/**
* 提现手续费
*/
private
Double
withdrawFee
;
/**
* 二维码类型(0:关注;1:付款;2:源码)
*/
private
Integer
qrCodeType
;
/**
* 0:未审核;1:审核通过,2审核不通过,3停用
*/
private
Integer
examineStatus
;
/**
* 审核失败原因
*/
private
String
examineFailedReason
;
public
Integer
getExamineStatus
()
{
return
examineStatus
;
}
public
void
setExamineStatus
(
Integer
examineStatus
)
{
this
.
examineStatus
=
examineStatus
;
}
public
String
getExamineFailedReason
()
{
return
examineFailedReason
;
}
public
void
setExamineFailedReason
(
String
examineFailedReason
)
{
this
.
examineFailedReason
=
examineFailedReason
;
}
public
String
getCompanyId
()
{
return
companyId
;
}
public
void
setCompanyId
(
String
companyId
)
{
this
.
companyId
=
companyId
;
}
public
Double
getSourceValue
()
{
return
sourceValue
;
}
public
void
setSourceValue
(
Double
sourceValue
)
{
this
.
sourceValue
=
sourceValue
;
}
public
Double
getRealSourceValue
()
{
return
realSourceValue
;
}
public
void
setRealSourceValue
(
Double
realSourceValue
)
{
this
.
realSourceValue
=
realSourceValue
;
}
public
String
getSourceExplain
()
{
return
sourceExplain
;
}
public
void
setSourceExplain
(
String
sourceExplain
)
{
this
.
sourceExplain
=
sourceExplain
;
}
public
Double
getPassValue
()
{
return
passValue
;
}
public
void
setPassValue
(
Double
passValue
)
{
this
.
passValue
=
passValue
;
}
public
Double
getRealPassValue
()
{
return
realPassValue
;
}
public
void
setRealPassValue
(
Double
realPassValue
)
{
this
.
realPassValue
=
realPassValue
;
}
public
String
getPassExplain
()
{
return
passExplain
;
}
public
void
setPassExplain
(
String
passExplain
)
{
this
.
passExplain
=
passExplain
;
}
public
Double
getSuperValue
()
{
return
superValue
;
}
public
void
setSuperValue
(
Double
superValue
)
{
this
.
superValue
=
superValue
;
}
public
Double
getRealSuperValue
()
{
return
realSuperValue
;
}
public
void
setRealSuperValue
(
Double
realSuperValue
)
{
this
.
realSuperValue
=
realSuperValue
;
}
public
String
getSuperExplain
()
{
return
superExplain
;
}
public
void
setSuperExplain
(
String
superExplain
)
{
this
.
superExplain
=
superExplain
;
}
public
Double
getWithdrawMoney
()
{
return
withdrawMoney
;
}
public
void
setWithdrawMoney
(
Double
withdrawMoney
)
{
this
.
withdrawMoney
=
withdrawMoney
;
}
public
Integer
getWithdrawRule
()
{
return
withdrawRule
;
}
public
void
setWithdrawRule
(
Integer
withdrawRule
)
{
this
.
withdrawRule
=
withdrawRule
;
}
public
Double
getWithdrawFee
()
{
return
withdrawFee
;
}
public
void
setWithdrawFee
(
Double
withdrawFee
)
{
this
.
withdrawFee
=
withdrawFee
;
}
public
Integer
getQrCodeType
()
{
return
qrCodeType
;
}
public
void
setQrCodeType
(
Integer
qrCodeType
)
{
this
.
qrCodeType
=
qrCodeType
;
}
}
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