Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dc-cost-system
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bltdc
dc-cost-system
Commits
d9010ded
Commit
d9010ded
authored
Oct 27, 2020
by
huluobin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
a1f205b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
CostTypeKindDao.java
...n/java/com/blt/other/module/cost/dao/CostTypeKindDao.java
+10
-1
No files found.
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/dao/CostTypeKindDao.java
View file @
d9010ded
...
@@ -2,6 +2,7 @@ package com.blt.other.module.cost.dao;
...
@@ -2,6 +2,7 @@ package com.blt.other.module.cost.dao;
import
com.blt.other.module.database.model.CostTypeKindDomain
;
import
com.blt.other.module.database.model.CostTypeKindDomain
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
import
org.springframework.stereotype.Repository
;
import
org.springframework.stereotype.Repository
;
import
java.util.List
;
import
java.util.List
;
...
@@ -12,12 +13,14 @@ public interface CostTypeKindDao {
...
@@ -12,12 +13,14 @@ public interface CostTypeKindDao {
/**
/**
* 获取所有费用种类
* 获取所有费用种类
*
* @return
* @return
*/
*/
List
<
CostTypeKindDomain
>
selectAll
();
List
<
CostTypeKindDomain
>
selectAll
();
/**
/**
* 根据 typeNo 获取费用种类
* 根据 typeNo 获取费用种类
*
* @param typeNo
* @param typeNo
* @return
* @return
*/
*/
...
@@ -25,6 +28,7 @@ public interface CostTypeKindDao {
...
@@ -25,6 +28,7 @@ public interface CostTypeKindDao {
/**
/**
* 根据 companyNo 获取费用种类
* 根据 companyNo 获取费用种类
*
* @param companyNo
* @param companyNo
* @return
* @return
*/
*/
...
@@ -32,6 +36,7 @@ public interface CostTypeKindDao {
...
@@ -32,6 +36,7 @@ public interface CostTypeKindDao {
/**
/**
* 根据 typeNo 和 kindName 获取费用种类,用于添加费用种类时判断是否已经存在相同的费用种类
* 根据 typeNo 和 kindName 获取费用种类,用于添加费用种类时判断是否已经存在相同的费用种类
*
* @param costTypeKindDomain
* @param costTypeKindDomain
* @return
* @return
*/
*/
...
@@ -39,6 +44,7 @@ public interface CostTypeKindDao {
...
@@ -39,6 +44,7 @@ public interface CostTypeKindDao {
/**
/**
* 根据 costTypeKindNo 获取种类信息
* 根据 costTypeKindNo 获取种类信息
*
* @param costTypeKindNo
* @param costTypeKindNo
* @return
* @return
*/
*/
...
@@ -46,6 +52,7 @@ public interface CostTypeKindDao {
...
@@ -46,6 +52,7 @@ public interface CostTypeKindDao {
/**
/**
* 根据费用小类名称和公司名称获取种类信息
* 根据费用小类名称和公司名称获取种类信息
*
* @param kindName
* @param kindName
* @param companyName
* @param companyName
* @return
* @return
...
@@ -55,15 +62,17 @@ public interface CostTypeKindDao {
...
@@ -55,15 +62,17 @@ public interface CostTypeKindDao {
/**
/**
* 根据费用小类名称和公司no获取种类信息
* 根据费用小类名称和公司no获取种类信息
*
* @param kindName
* @param kindName
* @param companyNo
* @param companyNo
* @return
* @return
*/
*/
CostTypeKindDomain
selectByKindNameAndCompanyNo
(
String
kindName
,
String
companyNo
);
CostTypeKindDomain
selectByKindNameAndCompanyNo
(
@Param
(
"kindName"
)
String
kindName
,
@Param
(
"companyNo"
)
String
companyNo
);
/**
/**
* 新增费用种类记录
* 新增费用种类记录
*
* @param ctkd
* @param ctkd
* @return
* @return
*/
*/
...
...
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