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
58eeba6c
Commit
58eeba6c
authored
Feb 06, 2024
by
tanyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增导入监听器目录
parent
b96f65d6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
142 additions
and
0 deletions
+142
-0
CbProjectExpenseSummary.java
...in/java/com/dsk/cscec/domain/CbProjectExpenseSummary.java
+103
-0
CbProjectExpenseSummaryMapper.java
...a/com/dsk/cscec/mapper/CbProjectExpenseSummaryMapper.java
+7
-0
CbProjectExpenseSummaryService.java
...com/dsk/cscec/service/CbProjectExpenseSummaryService.java
+8
-0
CbProjectExpenseSummaryMapper.xml
.../resources/mapper/cscec/CbProjectExpenseSummaryMapper.xml
+24
-0
No files found.
dsk-module/dsk-biz-api/src/main/java/com/dsk/cscec/domain/CbProjectExpenseSummary.java
0 → 100644
View file @
58eeba6c
package
com
.
dsk
.
cscec
.
domain
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
java.util.Date
;
import
lombok.Data
;
/**
* 项目费用汇总表
*/
@Data
@TableName
(
value
=
"cb_project_expense_summary"
)
public
class
CbProjectExpenseSummary
{
/**
* 主键ID
*/
@TableId
(
value
=
"id"
,
type
=
IdType
.
INPUT
)
private
Long
id
;
/**
* 项目ID
*/
@TableField
(
value
=
"project_id"
)
private
Long
projectId
;
/**
* 成本阶段(0:标前成本、1:标后成本、2:转固成本)
*/
@TableField
(
value
=
"cb_stage"
)
private
Integer
cbStage
;
/**
* 序号
*/
@TableField
(
value
=
"`number`"
)
private
String
number
;
/**
* 数据类型(0:现场经费、1:其他费用)
*/
@TableField
(
value
=
"data_type"
)
private
Integer
dataType
;
/**
* 名称
*/
@TableField
(
value
=
"expense_name"
)
private
String
expenseName
;
/**
* 数值
*/
@TableField
(
value
=
"expense_value"
)
private
String
expenseValue
;
/**
* 占比
*/
@TableField
(
value
=
"proportion"
)
private
String
proportion
;
/**
* 删除状态(0:否、2:是)
*/
@TableField
(
value
=
"del_flag"
)
private
Integer
delFlag
;
/**
* 创建者
*/
@TableField
(
value
=
"create_by"
)
private
String
createBy
;
/**
* 创建时间
*/
@TableField
(
value
=
"create_time"
)
private
Date
createTime
;
public
static
final
String
COL_ID
=
"id"
;
public
static
final
String
COL_PROJECT_ID
=
"project_id"
;
public
static
final
String
COL_CB_STAGE
=
"cb_stage"
;
public
static
final
String
COL_NUMBER
=
"number"
;
public
static
final
String
COL_DATA_TYPE
=
"data_type"
;
public
static
final
String
COL_EXPENSE_NAME
=
"expense_name"
;
public
static
final
String
COL_EXPENSE_VALUE
=
"expense_value"
;
public
static
final
String
COL_PROPORTION
=
"proportion"
;
public
static
final
String
COL_DEL_FLAG
=
"del_flag"
;
public
static
final
String
COL_CREATE_BY
=
"create_by"
;
public
static
final
String
COL_CREATE_TIME
=
"create_time"
;
}
\ No newline at end of file
dsk-module/dsk-biz-api/src/main/java/com/dsk/cscec/mapper/CbProjectExpenseSummaryMapper.java
0 → 100644
View file @
58eeba6c
package
com
.
dsk
.
cscec
.
mapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.dsk.cscec.domain.CbProjectExpenseSummary
;
public
interface
CbProjectExpenseSummaryMapper
extends
BaseMapper
<
CbProjectExpenseSummary
>
{
}
\ No newline at end of file
dsk-module/dsk-biz-api/src/main/java/com/dsk/cscec/service/CbProjectExpenseSummaryService.java
0 → 100644
View file @
58eeba6c
package
com
.
dsk
.
cscec
.
service
;
import
com.dsk.cscec.domain.CbProjectExpenseSummary
;
import
com.baomidou.mybatisplus.extension.service.IService
;
public
interface
CbProjectExpenseSummaryService
extends
IService
<
CbProjectExpenseSummary
>{
}
dsk-module/dsk-biz-api/src/main/resources/mapper/cscec/CbProjectExpenseSummaryMapper.xml
0 → 100644
View file @
58eeba6c
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.dsk.cscec.mapper.CbProjectExpenseSummaryMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.dsk.cscec.domain.CbProjectExpenseSummary"
>
<!--@mbg.generated-->
<!--@Table cb_project_expense_summary-->
<id
column=
"id"
jdbcType=
"BIGINT"
property=
"id"
/>
<result
column=
"project_id"
jdbcType=
"BIGINT"
property=
"projectId"
/>
<result
column=
"cb_stage"
jdbcType=
"INTEGER"
property=
"cbStage"
/>
<result
column=
"number"
jdbcType=
"VARCHAR"
property=
"number"
/>
<result
column=
"data_type"
jdbcType=
"INTEGER"
property=
"dataType"
/>
<result
column=
"expense_name"
jdbcType=
"VARCHAR"
property=
"expenseName"
/>
<result
column=
"expense_value"
jdbcType=
"VARCHAR"
property=
"expenseValue"
/>
<result
column=
"proportion"
jdbcType=
"VARCHAR"
property=
"proportion"
/>
<result
column=
"del_flag"
jdbcType=
"INTEGER"
property=
"delFlag"
/>
<result
column=
"create_by"
jdbcType=
"VARCHAR"
property=
"createBy"
/>
<result
column=
"create_time"
jdbcType=
"TIMESTAMP"
property=
"createTime"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
<!--@mbg.generated-->
id, project_id, cb_stage, `number`, data_type, expense_name, expense_value, proportion,
del_flag, create_by, create_time
</sql>
</mapper>
\ No newline at end of file
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