Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-operate-sys-cscec
Project
Project
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
fulixin
dsk-operate-sys-cscec
Commits
16242821
Commit
16242821
authored
Feb 06, 2024
by
施翔轲
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增二期项目常量信息
parent
817aeeb1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
4 deletions
+46
-4
CbProjectConstants.java
.../main/java/com/dsk/cscec/constant/CbProjectConstants.java
+46
-4
No files found.
dsk-module/dsk-biz-api/src/main/java/com/dsk/cscec/constant/CbProjectConstants.java
View file @
16242821
...
...
@@ -20,22 +20,26 @@ public interface CbProjectConstants {
* 成本阶段:转固
*/
Integer
CB_STAGE_TO_SOLID
=
2
;
/**
* 项目文件状态:未上传
*/
Integer
PROJECT_FILE_STATUS_NOT_UPLOAD
=
0
;
/**
* 项目文件状态:待解析
*/
Integer
PROJECT_FILE_STATUS_NOT_PARSE
=
0
;
Integer
PROJECT_FILE_STATUS_NOT_PARSE
=
1
;
/**
* 项目文件状态:解析中
*/
Integer
PROJECT_FILE_STATUS_PARSING
=
1
;
Integer
PROJECT_FILE_STATUS_PARSING
=
2
;
/**
* 项目文件状态:解析成功
*/
Integer
PROJECT_FILE_STATUS_PARSE_SUCCESS
=
2
;
Integer
PROJECT_FILE_STATUS_PARSE_SUCCESS
=
3
;
/**
* 项目文件状态:解析失败
*/
Integer
PROJECT_FILE_STATUS_PARSE_FAIL
=
3
;
Integer
PROJECT_FILE_STATUS_PARSE_FAIL
=
4
;
/**
* 删除状态:未删除
*/
...
...
@@ -44,5 +48,43 @@ public interface CbProjectConstants {
* 删除状态:已删除
*/
Integer
DELETE_FLAG_NOT_EXIST
=
2
;
/**
* 是否获取项目详情:是
*/
Integer
IS_GET_PROJECT_DETAIL
=
0
;
/**
* 是否获取项目详情:否
*/
Integer
NOT_GET_PROJECT_DETAIL
=
1
;
//成本类型(0:直接费成本、1:工料汇总、2:措施项目、3:其他项目、4:现场经费、5:成本汇总、6:未确定)
/**
* 成本类型:直接费成本
*/
Integer
CB_TYPE_DIRECT_EXPENSE
=
0
;
/**
* 成本类型:工料汇总
*/
Integer
CB_TYPE_QUANTITY_SUMMARY
=
1
;
/**
* 成本类型:措施项目
*/
Integer
CB_TYPE_MEASURE_PROJECT
=
2
;
/**
* 成本类型:其他项目
*/
Integer
CB_TYPE_OTHER_PROJECT
=
3
;
/**
* 成本类型:现场经费
*/
Integer
CB_TYPE_SCENE_EXPENSE
=
4
;
/**
* 成本类型:成本汇总
*/
Integer
CB_TYPE_ACCOUNT_SUMMARY
=
5
;
/**
* 成本类型:未确定
*/
Integer
CB_TYPE_NOT_CONFIRM
=
6
;
}
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