Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
8
8timerapiv200
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
8timerv2
8timerapiv200
Commits
9e85cbc3
Commit
9e85cbc3
authored
4 years ago
by
ilal
Committed by
chenzg
3 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交
parent
c36b1da0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
75 deletions
+33
-75
src/main/java/cn/timer/api/bean/sbgjj/SbgjjAssoCbfa.java
+4
-0
src/main/java/cn/timer/api/controller/sbgjj/SocialSecurityFundController.java
+15
-0
src/main/java/cn/timer/api/dto/sbgjj/InsuranceSchemeDto.java
+2
-0
src/main/resources/mapping/sbgjj/SbgjjAssoCbfaMapper.xml
+12
-75
No files found.
src/main/java/cn/timer/api/bean/sbgjj/SbgjjAssoCbfa.java
View file @
9e85cbc3
...
@@ -69,6 +69,9 @@ public class SbgjjAssoCbfa extends Model<SbgjjAssoCbfa> {
...
@@ -69,6 +69,9 @@ public class SbgjjAssoCbfa extends Model<SbgjjAssoCbfa> {
private
Double
sbmax
;
private
Double
sbmax
;
@ApiModelProperty
(
value
=
"公积金获取最大值"
,
example
=
"公积金获取最大值"
)
@ApiModelProperty
(
value
=
"公积金获取最大值"
,
example
=
"公积金获取最大值"
)
private
Double
gjjmax
;
private
Double
gjjmax
;
@ApiModelProperty
(
value
=
"公积金(0:不办理;1:办理)"
,
example
=
"1"
)
private
Integer
isGjjbl
;
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/controller/sbgjj/SocialSecurityFundController.java
View file @
9e85cbc3
...
@@ -187,8 +187,10 @@ public class SocialSecurityFundController {
...
@@ -187,8 +187,10 @@ public class SocialSecurityFundController {
SbgjjAssoCbfa
cbfa
=
SbgjjAssoCbfa
.
builder
().
build
();
SbgjjAssoCbfa
cbfa
=
SbgjjAssoCbfa
.
builder
().
build
();
cbfa
.
setCbmcName
(
insura
.
getName
());
//参保名称
cbfa
.
setCbmcName
(
insura
.
getName
());
//参保名称
cbfa
.
setCbcs
(
insura
.
getInsuredcities
());
//参保城市
cbfa
.
setCbcs
(
insura
.
getInsuredcities
());
//参保城市
cbfa
.
setSbcbfzmc
(
insura
.
getShebaoname
());
//社保参保方案名称
cbfa
.
setSbcbfzmc
(
insura
.
getShebaoname
());
//社保参保方案名称
cbfa
.
setGjjcbfamc
(
insura
.
getGongjijinname
());
//公积金参保方案名称
cbfa
.
setGjjcbfamc
(
insura
.
getGongjijinname
());
//公积金参保方案名称
cbfa
.
setFwf
(
Double
.
valueOf
(
insura
.
getFwf
()));
//服务费 (元/人/月)
cbfa
.
setFwf
(
Double
.
valueOf
(
insura
.
getFwf
()));
//服务费 (元/人/月)
cbfa
.
setSbSbgjjid
(
insura
.
getShebaoid
());
//社保(公积金)方案库id
cbfa
.
setSbSbgjjid
(
insura
.
getShebaoid
());
//社保(公积金)方案库id
cbfa
.
setGjjSbgjjid
(
insura
.
getGongjijinid
());
//(社保)公积金方案库id
cbfa
.
setGjjSbgjjid
(
insura
.
getGongjijinid
());
//(社保)公积金方案库id
...
@@ -200,6 +202,13 @@ public class SocialSecurityFundController {
...
@@ -200,6 +202,13 @@ public class SocialSecurityFundController {
cbfa
.
setGjjmax
(
Double
.
valueOf
(
insura
.
getGjjmax
()));
cbfa
.
setGjjmax
(
Double
.
valueOf
(
insura
.
getGjjmax
()));
cbfa
.
setQyid
(
userBean
.
getOrgCode
());
cbfa
.
setQyid
(
userBean
.
getOrgCode
());
if
(
insura
.
getIsGjjbl
())
{
cbfa
.
setIsGjjbl
(
0
);
}
else
{
cbfa
.
setIsGjjbl
(
1
);
}
sbgjjassocbfamapper
.
sbgjjassocbfainsert
(
cbfa
);
sbgjjassocbfamapper
.
sbgjjassocbfainsert
(
cbfa
);
int
cbfaid
=
cbfa
.
getId
();
int
cbfaid
=
cbfa
.
getId
();
...
@@ -368,6 +377,12 @@ public class SocialSecurityFundController {
...
@@ -368,6 +377,12 @@ public class SocialSecurityFundController {
cbfa
.
setSbmax
(
Double
.
valueOf
(
insura
.
getSbmax
()));
cbfa
.
setSbmax
(
Double
.
valueOf
(
insura
.
getSbmax
()));
cbfa
.
setGjjmax
(
Double
.
valueOf
(
insura
.
getGjjmax
()));
cbfa
.
setGjjmax
(
Double
.
valueOf
(
insura
.
getGjjmax
()));
if
(
insura
.
getIsGjjbl
())
{
cbfa
.
setIsGjjbl
(
0
);
}
else
{
cbfa
.
setIsGjjbl
(
1
);
}
cbfa
.
updateById
();
cbfa
.
updateById
();
sbgjjassocbfzmxmapper
.
deleteBycbfaid
(
insura
.
getId
());
sbgjjassocbfzmxmapper
.
deleteBycbfaid
(
insura
.
getId
());
...
...
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/dto/sbgjj/InsuranceSchemeDto.java
View file @
9e85cbc3
...
@@ -24,6 +24,8 @@ public class InsuranceSchemeDto implements Serializable {
...
@@ -24,6 +24,8 @@ public class InsuranceSchemeDto implements Serializable {
SocialfundDto
[]
gongjijin
;
SocialfundDto
[]
gongjijin
;
int
gongjijinid
;
int
gongjijinid
;
Boolean
isGjjbl
;
//0:不办理;1:办理
String
sbmin
;
String
sbmin
;
String
gjjmin
;
String
gjjmin
;
...
...
This diff is collapsed.
Click to expand it.
src/main/resources/mapping/sbgjj/SbgjjAssoCbfaMapper.xml
View file @
9e85cbc3
...
@@ -17,39 +17,10 @@
...
@@ -17,39 +17,10 @@
<result
column=
"gjjmin"
property=
"gjjmin"
/>
<result
column=
"gjjmin"
property=
"gjjmin"
/>
<result
column=
"sbmax"
property=
"sbmax"
/>
<result
column=
"sbmax"
property=
"sbmax"
/>
<result
column=
"gjjmax"
property=
"gjjmax"
/>
<result
column=
"gjjmax"
property=
"gjjmax"
/>
<result
column=
"is_gjjbl"
property=
"isGjjbl"
/>
</resultMap>
</resultMap>
<sql
id=
"Base_Column_List"
>
id,
cbmc_name,
cbcs,
sbcbfzmc,
gjjcbfamc,
fwf,
sb_sbgjjid,
gjj_sbgjjid,
qyid,
sbmin,
gjjmin,
sbmax,
gjjmax
</sql>
<sql
id=
"Base_Column_List_Alias"
>
id SbgjjAssoCbfa_id,
cbmc_name SbgjjAssoCbfa_cbmc_name,
cbcs SbgjjAssoCbfa_cbcs,
sbcbfzmc SbgjjAssoCbfa_sbcbfzmc,
gjjcbfamc SbgjjAssoCbfa_gjjcbfamc,
fwf SbgjjAssoCbfa_fwf,
sb_sbgjjid SbgjjAssoCbfa_sb_sbgjjid,
gjj_sbgjjid SbgjjAssoCbfa_gjj_sbgjjid,
qyid SbgjjAssoCbfa_qyid,
sbmin SbgjjAssoCbfa_sbmin,
gjjmin SbgjjAssoCbfa_gjjmin,
sbmax SbgjjAssoCbfa_sbmax,
gjjmax SbgjjAssoCbfa_gjjmax
</sql>
<insert
id=
"sbgjjassocbfainsert"
parameterType=
"cn.timer.api.bean.sbgjj.SbgjjAssoCbfa"
useGeneratedKeys=
"true"
keyProperty=
"id"
>
<insert
id=
"sbgjjassocbfainsert"
parameterType=
"cn.timer.api.bean.sbgjj.SbgjjAssoCbfa"
useGeneratedKeys=
"true"
keyProperty=
"id"
>
...
@@ -89,7 +60,10 @@
...
@@ -89,7 +60,10 @@
sbmax,
sbmax,
</if>
</if>
<if
test =
'null != gjjmax'
>
<if
test =
'null != gjjmax'
>
gjjmax
gjjmax,
</if>
<if
test =
'null != isGjjbl'
>
is_gjjbl
</if>
</if>
</trim>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
...
@@ -127,52 +101,14 @@
...
@@ -127,52 +101,14 @@
#{sbmax},
#{sbmax},
</if>
</if>
<if
test =
'null != gjjmax'
>
<if
test =
'null != gjjmax'
>
#{gjjmax}
#{gjjmax},
</if>
<if
test =
'null != isGjjbl'
>
#{isGjjbl}
</if>
</if>
</trim>
</trim>
</insert>
</insert>
<!-- <delete id="delete" >
DELETE FROM sbgjj_asso_cbfa
WHERE id = #{id}
</delete>
<update id="update" parameterType="cn.timer.api.bean.sbgjj.SbgjjAssoCbfa">
UPDATE sbgjj_asso_cbfa
<set>
<if test ='null != cbmcName'>cbmc_name = #{cbmcName},</if>
<if test ='null != cbcs'>cbcs = #{cbcs},</if>
<if test ='null != sbcbfzmc'>sbcbfzmc = #{sbcbfzmc},</if>
<if test ='null != gjjcbfamc'>gjjcbfamc = #{gjjcbfamc},</if>
<if test ='null != fwf'>fwf = #{fwf},</if>
<if test ='null != sbSbgjjid'>sb_sbgjjid = #{sbSbgjjid},</if>
<if test ='null != gjjSbgjjid'>gjj_sbgjjid = #{gjjSbgjjid},</if>
<if test ='null != qyid'>qyid = #{qyid},</if>
<if test ='null != sbmin'>sbmin = #{sbmin},</if>
<if test ='null != gjjmin'>gjjmin = #{gjjmin},</if>
<if test ='null != sbmax'>sbmax = #{sbmax},</if>
<if test ='null != gjjmax'>gjjmax = #{gjjmax}</if>
</set>
WHERE id = #{id}
</update>
<select id="load" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List" />
FROM sbgjj_asso_cbfa
WHERE id = #{id}
</select>
<select id="pageList" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List" />
FROM sbgjj_asso_cbfa
LIMIT #{offset}, #{pageSize}
</select>
<select id="pageListCount" resultType="java.lang.Integer">
SELECT count(1)
FROM sbgjj_asso_cbfa
</select>
-->
</mapper>
</mapper>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
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