Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
成
成本分析-上科大专用
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
JAVA
成本分析-上科大专用
Merge requests
!8
导入2
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
导入2
jiangxiaoming-cbhs
into
develop
Overview
0
Commits
1
Pipelines
1
Changes
7
Merged
jiangxiaoming
requested to merge
jiangxiaoming-cbhs
into
develop
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
7
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
1988d214
1 commit,
1 year ago
7 files
+
333
−
34
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
ServiceSite/src/main/java/com/seasky/costCalculateSpecialSkd/business/dao/mapper/EssentialCurriculaVariableMapper.java
+
5
−
0
Options
@@ -2,9 +2,12 @@ package com.seasky.costCalculateSpecialSkd.business.dao.mapper;
import
com.seasky.core.base.BaseMapper
;
import
com.seasky.costCalculateSpecialSkd.business.entity.EssentialCurriculaVariablePo
;
import
com.seasky.costCalculateSpecialSkd.business.entity.EssentialHousePropertyPo
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
import
java.util.List
;
/**
* @author 64136
*/
@@ -13,4 +16,6 @@ public interface EssentialCurriculaVariableMapper extends BaseMapper<EssentialCu
Integer
deleteByEssentialId
(
@Param
(
"essentialId"
)
Long
essentialId
);
Integer
batchInsertCurriculaVariable
(
@Param
(
"list"
)
List
<
EssentialCurriculaVariablePo
>
list
);
}