Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
bailuntec-cost
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
huluobin
bailuntec-cost
Commits
183972e6
Commit
183972e6
authored
Mar 26, 2021
by
huluobin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
# 更新
parent
3fe050cb
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
0 deletions
+16
-0
DepartmentCheckState.java
...ule/cost/service/impl/costcheck/DepartmentCheckState.java
+2
-0
FinalCheckState.java
...r/module/cost/service/impl/costcheck/FinalCheckState.java
+2
-0
FinancialCheckState.java
...dule/cost/service/impl/costcheck/FinancialCheckState.java
+2
-0
HrCheckState.java
...ther/module/cost/service/impl/costcheck/HrCheckState.java
+2
-0
PayedState.java
.../other/module/cost/service/impl/costcheck/PayedState.java
+2
-0
RefuseState.java
...other/module/cost/service/impl/costcheck/RefuseState.java
+2
-0
UnPayState.java
.../other/module/cost/service/impl/costcheck/UnPayState.java
+2
-0
UnSubmitState.java
...her/module/cost/service/impl/costcheck/UnSubmitState.java
+2
-0
No files found.
cost-service/src/main/java/com/blt/other/module/cost/service/impl/costcheck/DepartmentCheckState.java
View file @
183972e6
...
...
@@ -18,6 +18,7 @@ import com.blt.other.module.sys.model.DepartmentReviewer;
import
com.blt.other.module.sys.model.SpecDepartmentCheckConfig
;
import
lombok.Data
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.context.annotation.Scope
;
import
org.springframework.stereotype.Component
;
import
org.springframework.transaction.annotation.Transactional
;
...
...
@@ -36,6 +37,7 @@ import java.util.stream.Collectors;
*/
@Slf4j
@Component
@Scope
(
"prototype"
)
public
class
DepartmentCheckState
extends
CostState
{
@Resource
...
...
cost-service/src/main/java/com/blt/other/module/cost/service/impl/costcheck/FinalCheckState.java
View file @
183972e6
...
...
@@ -11,6 +11,7 @@ import com.blt.other.module.cost.model.CostDomain;
import
com.blt.other.module.cost.model.CostTemplate
;
import
com.blt.other.module.sys.model.CostReviewer
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.context.annotation.Scope
;
import
org.springframework.stereotype.Component
;
import
org.springframework.transaction.annotation.Transactional
;
...
...
@@ -31,6 +32,7 @@ import java.util.stream.Collectors;
*/
@Slf4j
@Component
@Scope
(
"prototype"
)
public
class
FinalCheckState
extends
CostState
{
@Resource
...
...
cost-service/src/main/java/com/blt/other/module/cost/service/impl/costcheck/FinancialCheckState.java
View file @
183972e6
...
...
@@ -10,6 +10,7 @@ import com.blt.other.module.cost.model.CostCurrentReviewer;
import
com.blt.other.module.cost.model.CostDomain
;
import
com.blt.other.module.cost.model.CostTemplate
;
import
com.blt.other.module.sys.model.CostReviewer
;
import
org.springframework.context.annotation.Scope
;
import
org.springframework.stereotype.Component
;
import
org.springframework.transaction.annotation.Transactional
;
...
...
@@ -27,6 +28,7 @@ import java.util.stream.Collectors;
* @since 2020/10/30 2:57 下午
*/
@Component
@Scope
(
"prototype"
)
public
class
FinancialCheckState
extends
CostState
{
...
...
cost-service/src/main/java/com/blt/other/module/cost/service/impl/costcheck/HrCheckState.java
View file @
183972e6
...
...
@@ -12,6 +12,7 @@ import com.blt.other.module.cost.model.CostDomain;
import
com.blt.other.module.cost.model.CostTemplate
;
import
com.blt.other.module.sys.model.CostReviewer
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.context.annotation.Scope
;
import
org.springframework.stereotype.Component
;
import
javax.annotation.Resource
;
...
...
@@ -27,6 +28,7 @@ import java.util.List;
* @since 2020/10/30 2:57 下午
*/
@Component
@Scope
(
"prototype"
)
public
class
HrCheckState
extends
CostState
{
@Autowired
...
...
cost-service/src/main/java/com/blt/other/module/cost/service/impl/costcheck/PayedState.java
View file @
183972e6
package
com
.
blt
.
other
.
module
.
cost
.
service
.
impl
.
costcheck
;
import
org.springframework.context.annotation.Scope
;
import
org.springframework.stereotype.Component
;
/**
...
...
@@ -11,6 +12,7 @@ import org.springframework.stereotype.Component;
* @since 2020/10/30 2:57 下午
*/
@Component
@Scope
(
"prototype"
)
public
class
PayedState
extends
CostState
{
@Override
...
...
cost-service/src/main/java/com/blt/other/module/cost/service/impl/costcheck/RefuseState.java
View file @
183972e6
package
com
.
blt
.
other
.
module
.
cost
.
service
.
impl
.
costcheck
;
import
com.blt.other.common.exception.BizRuntimeException
;
import
org.springframework.context.annotation.Scope
;
import
org.springframework.stereotype.Component
;
/**
...
...
@@ -12,6 +13,7 @@ import org.springframework.stereotype.Component;
* @since 2020/10/30 2:57 下午
*/
@Component
@Scope
(
"prototype"
)
public
class
RefuseState
extends
CostState
{
@Override
...
...
cost-service/src/main/java/com/blt/other/module/cost/service/impl/costcheck/UnPayState.java
View file @
183972e6
...
...
@@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import
com.blt.other.common.exception.BizRuntimeException
;
import
com.blt.other.module.cost.model.CostCurrentReviewer
;
import
com.blt.other.module.cost.model.CostDomain
;
import
org.springframework.context.annotation.Scope
;
import
org.springframework.stereotype.Component
;
/**
...
...
@@ -15,6 +16,7 @@ import org.springframework.stereotype.Component;
* @since 2020/10/30 2:57 下午
*/
@Component
@Scope
(
"prototype"
)
public
class
UnPayState
extends
CostState
{
@Override
...
...
cost-service/src/main/java/com/blt/other/module/cost/service/impl/costcheck/UnSubmitState.java
View file @
183972e6
...
...
@@ -2,6 +2,7 @@ package com.blt.other.module.cost.service.impl.costcheck;
import
com.blt.other.common.exception.BizRuntimeException
;
import
com.blt.other.module.cost.model.CostDomain
;
import
org.springframework.context.annotation.Scope
;
import
org.springframework.stereotype.Component
;
import
org.springframework.transaction.annotation.Transactional
;
...
...
@@ -17,6 +18,7 @@ import java.time.LocalDateTime;
* @since 2020/10/30 2:57 下午
*/
@Component
@Scope
(
"prototype"
)
public
class
UnSubmitState
extends
CostState
{
@Resource
...
...
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