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
de89b137
Commit
de89b137
authored
Jul 03, 2019
by
zjy
Browse files
Options
Browse Files
Download
Plain Diff
user/role/tright 7.3
parents
c9c6cf30
14c685d7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
213 additions
and
0 deletions
+213
-0
CompanyDivideRuleVo.java
...va/com/pangding/web/authority/vo/CompanyDivideRuleVo.java
+185
-0
CompanyDivideReqVo.java
...m/pangding/web/authority/vo/reqvo/CompanyDivideReqVo.java
+28
-0
No files found.
src/main/java/com/pangding/web/authority/vo/CompanyDivideRuleVo.java
0 → 100644
View file @
de89b137
package
com
.
pangding
.
web
.
authority
.
vo
;
import
com.yanzuoguang.dao.TableAnnotation
;
@TableAnnotation
(
"pd_company_divide_rule"
)
public
class
CompanyDivideRuleVo
extends
CompanyVo
{
@TableAnnotation
(
"id"
)
private
String
companyDivideId
;
@TableAnnotation
(
"company_id"
)
private
String
companyId
;
@TableAnnotation
(
"source_value"
)
private
double
sourceValue
;
@TableAnnotation
(
"real_source_value"
)
private
double
realSourceValue
;
@TableAnnotation
(
"source_explain"
)
private
String
sourceExplain
;
@TableAnnotation
(
"pass_value"
)
private
double
passValue
;
@TableAnnotation
(
"real_pass_value"
)
private
double
realPassValue
;
@TableAnnotation
(
"pass_explain"
)
private
String
passExplain
;
@TableAnnotation
(
"super_value"
)
private
double
superValue
;
@TableAnnotation
(
"real_super_value"
)
private
double
realSuperValue
;
@TableAnnotation
(
"super_explain"
)
private
String
superExplain
;
private
double
fee
;
@TableAnnotation
(
"bonus_type"
)
private
int
bonusType
;
@TableAnnotation
(
"bonus_value"
)
private
double
bonusValue
;
@TableAnnotation
(
"real_bonus_value"
)
private
double
realBonusValue
;
@TableAnnotation
(
"bonus_explain"
)
private
String
bonusExlain
;
@TableAnnotation
(
"divide_status"
)
private
int
divideStatus
;
public
String
getCompanyDivideId
()
{
return
companyDivideId
;
}
public
void
setCompanyDivideId
(
String
companyDivideId
)
{
this
.
companyDivideId
=
companyDivideId
;
}
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
getFee
()
{
return
fee
;
}
public
void
setFee
(
double
fee
)
{
this
.
fee
=
fee
;
}
public
int
getBonusType
()
{
return
bonusType
;
}
public
void
setBonusType
(
int
bonusType
)
{
this
.
bonusType
=
bonusType
;
}
public
double
getBonusValue
()
{
return
bonusValue
;
}
public
void
setBonusValue
(
double
bonusValue
)
{
this
.
bonusValue
=
bonusValue
;
}
public
double
getRealBonusValue
()
{
return
realBonusValue
;
}
public
void
setRealBonusValue
(
double
realBonusValue
)
{
this
.
realBonusValue
=
realBonusValue
;
}
public
String
getBonusExlain
()
{
return
bonusExlain
;
}
public
void
setBonusExlain
(
String
bonusExlain
)
{
this
.
bonusExlain
=
bonusExlain
;
}
}
src/main/java/com/pangding/web/authority/vo/reqvo/CompanyDivideReqVo.java
0 → 100644
View file @
de89b137
package
com
.
pangding
.
web
.
authority
.
vo
.
reqvo
;
import
java.util.List
;
public
class
CompanyDivideReqVo
{
public
String
companyId
;
private
List
<
String
>
companyIdList
;
public
String
getCompanyId
()
{
return
companyId
;
}
public
void
setCompanyId
(
String
companyId
)
{
this
.
companyId
=
companyId
;
}
public
List
<
String
>
getCompanyIdList
()
{
return
companyIdList
;
}
public
void
setCompanyIdList
(
List
<
String
>
companyIdList
)
{
this
.
companyIdList
=
companyIdList
;
}
}
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