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
9b18a684
Commit
9b18a684
authored
Nov 27, 2020
by
huluobin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
f94a62ab
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
271 additions
and
267 deletions
+271
-267
AddReq.java
...e/src/main/java/com/blt/other/module/cost/dto/AddReq.java
+44
-0
CheckCostListReq.java
.../java/com/blt/other/module/cost/dto/CheckCostListReq.java
+1
-0
CostApiDto.java
...c/main/java/com/blt/other/module/cost/dto/CostApiDto.java
+33
-33
CostListApiDto.java
...in/java/com/blt/other/module/cost/dto/CostListApiDto.java
+13
-13
CostPlanApiDto.java
...in/java/com/blt/other/module/cost/dto/CostPlanApiDto.java
+32
-32
CostPlanNewApiDto.java
...java/com/blt/other/module/cost/dto/CostPlanNewApiDto.java
+21
-21
CostPlanTempApiDto.java
...ava/com/blt/other/module/cost/dto/CostPlanTempApiDto.java
+27
-27
CostTemplateApiDto.java
...ava/com/blt/other/module/cost/dto/CostTemplateApiDto.java
+18
-50
CostTemplateBaseColApiReq.java
.../blt/other/module/cost/dto/CostTemplateBaseColApiReq.java
+0
-30
CostTemplateColApiReq.java
.../com/blt/other/module/cost/dto/CostTemplateColApiReq.java
+21
-60
DeleteItemResp.java
...in/java/com/blt/other/module/cost/dto/DeleteItemResp.java
+1
-0
DeleteResp.java
...c/main/java/com/blt/other/module/cost/dto/DeleteResp.java
+1
-0
GetAllCostPlanReq.java
...java/com/blt/other/module/cost/dto/GetAllCostPlanReq.java
+1
-1
QueryListReq.java
...main/java/com/blt/other/module/cost/dto/QueryListReq.java
+57
-0
CostListSearchKeysVo.java
...va/com/blt/other/module/cost/vo/CostListSearchKeysVo.java
+1
-0
No files found.
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/dto/AddReq.java
0 → 100644
View file @
9b18a684
package
com
.
blt
.
other
.
module
.
cost
.
dto
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
/**
* <p>
*
* </p>
*
* @author robbendev
* @since 2020/11/27 7:40 下午
*/
@Data
public
class
AddReq
{
@ApiModelProperty
(
value
=
"对应cost表字段名"
)
private
String
costCol
;
@ApiModelProperty
(
value
=
"对应cost表字段数据库类型"
)
private
String
costColType
;
@ApiModelProperty
(
"字段类目"
)
private
String
colCategory
;
@ApiModelProperty
(
"提示"
)
private
String
prompt
;
@ApiModelProperty
(
value
=
"表单字段名"
)
private
String
colName
;
@ApiModelProperty
(
value
=
"1-单行文本 2-多行文本 3-下拉框 4-多选 5-日期 6-附件"
)
private
Integer
colType
;
@ApiModelProperty
(
value
=
"表单字段数据来源 1. input 人工输入 2. api 网络请求 3. enum 枚举"
)
private
Integer
colDataSource
;
@ApiModelProperty
(
"是否扩展字段"
)
private
Boolean
isExtension
;
private
Integer
createUserId
;
}
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/dto/CheckCostListReq.java
View file @
9b18a684
...
...
@@ -13,6 +13,7 @@ import lombok.Data;
*/
@Data
public
class
CheckCostListReq
{
Integer
userid
;
Integer
pageNum
;
Integer
pageSize
;
...
...
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/dto/CostApiDto.java
View file @
9b18a684
package
com
.
blt
.
other
.
module
.
cost
.
dto
;
import
com.bailuntec.cost.api.dto.CostDto
;
import
com.bailuntec.cost.api.dto.CostListPrintDto
;
import
com.blt.other.module.cost.model.CostDomain
;
import
com.github.pagehelper.PageInfo
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
java.util.List
;
/**
* <p>
*
* </p>
*
* @author robbendev
* @since 2020/10/29 11:42 上午
*/
public
class
CostApiDto
{
}
//
package com.blt.other.module.cost.dto;
//
//
import com.bailuntec.cost.api.dto.CostDto;
//
import com.bailuntec.cost.api.dto.CostListPrintDto;
//
import com.blt.other.module.cost.model.CostDomain;
//
import com.github.pagehelper.PageInfo;
//
import io.swagger.annotations.ApiModelProperty;
//
import lombok.Data;
//
//
import java.util.List;
//
/
//
**
//
* <p>
//
*
//
* </p>
//
*
//
* @author robbendev
//
* @since 2020/10/29 11:42 上午
//
*/
//
public class CostApiDto {
//
//
//
//
//
//
//
//
//
//
//
//
//
}
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/dto/CostListApiDto.java
View file @
9b18a684
package
com
.
blt
.
other
.
module
.
cost
.
dto
;
/**
* <p>
*
* </p>
*
* @author robbendev
* @since 2020/10/27 2:58 下午
*/
public
class
CostListApiDto
{
}
//
package com.blt.other.module.cost.dto;
//
/
//
**
//
* <p>
//
*
//
* </p>
//
*
//
* @author robbendev
//
* @since 2020/10/27 2:58 下午
//
*/
//
public class CostListApiDto {
//
//
}
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/dto/CostPlanApiDto.java
View file @
9b18a684
package
com
.
blt
.
other
.
module
.
cost
.
dto
;
import
com.bailuntec.cost.api.dto.CostPlanDto
;
import
com.bailuntec.cost.api.dto.CostPlanTempDto
;
import
com.blt.other.module.database.model.CostPlanDomain
;
import
com.github.pagehelper.PageInfo
;
import
io.swagger.annotations.ApiModel
;
import
lombok.AllArgsConstructor
;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
import
java.math.BigDecimal
;
import
java.util.List
;
/**
* <p>
*
* </p>
*
* @author robbendev
* @since 2020/10/15 1:08 下午
*/
public
final
class
CostPlanApiDto
{
}
//
package com.blt.other.module.cost.dto;
//
//
import com.bailuntec.cost.api.dto.CostPlanDto;
//
import com.bailuntec.cost.api.dto.CostPlanTempDto;
//
import com.blt.other.module.database.model.CostPlanDomain;
//
import com.github.pagehelper.PageInfo;
//
import io.swagger.annotations.ApiModel;
//
import lombok.AllArgsConstructor;
//
import lombok.Data;
//
import lombok.NoArgsConstructor;
//
//
import java.math.BigDecimal;
//
import java.util.List;
//
/
//
**
//
* <p>
//
*
//
* </p>
//
*
//
* @author robbendev
//
* @since 2020/10/15 1:08 下午
//
*/
//
public final class CostPlanApiDto {
//
//
//
//
//
//
//
//
//
}
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/dto/CostPlanNewApiDto.java
View file @
9b18a684
package
com
.
blt
.
other
.
module
.
cost
.
dto
;
import
com.blt.other.module.database.model.CostPlanDomain
;
import
io.swagger.annotations.ApiModel
;
import
lombok.Data
;
/**
* <p>
*
* </p>
*
* @author robbendev
* @since 2020/10/16 2:24 下午
*/
public
class
CostPlanNewApiDto
{
}
//
package com.blt.other.module.cost.dto;
//
//
import com.blt.other.module.database.model.CostPlanDomain;
//
import io.swagger.annotations.ApiModel;
//
import lombok.Data;
//
/
//
**
//
* <p>
//
*
//
* </p>
//
*
//
* @author robbendev
//
* @since 2020/10/16 2:24 下午
//
*/
//
public class CostPlanNewApiDto {
//
//
//
//
//
//
}
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/dto/CostPlanTempApiDto.java
View file @
9b18a684
package
com
.
blt
.
other
.
module
.
cost
.
dto
;
import
com.bailuntec.cost.api.dto.CostPlanTempDto
;
import
com.blt.other.module.database.model.CostPlanTempDomain
;
import
io.swagger.annotations.ApiModel
;
import
lombok.Data
;
import
org.springframework.web.multipart.MultipartFile
;
import
java.math.BigDecimal
;
/**
* <p>
*
* </p>
*
* @author robbendev
* @since 2020/10/15 1:31 下午
*/
public
final
class
CostPlanTempApiDto
{
}
//
package com.blt.other.module.cost.dto;
//
//
import com.bailuntec.cost.api.dto.CostPlanTempDto;
//
import com.blt.other.module.database.model.CostPlanTempDomain;
//
import io.swagger.annotations.ApiModel;
//
import lombok.Data;
//
import org.springframework.web.multipart.MultipartFile;
//
//
import java.math.BigDecimal;
//
/
//
**
//
* <p>
//
*
//
* </p>
//
*
//
* @author robbendev
//
* @since 2020/10/15 1:31 下午
//
*/
//
public final class CostPlanTempApiDto {
//
//
//
//
//
//
//
//
}
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/dto/CostTemplateApiDto.java
View file @
9b18a684
package
com
.
blt
.
other
.
module
.
cost
.
dto
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
java.time.LocalDateTime
;
/**
* <p>
*
* </p>
*
* @author robbendev
* @since 2020/10/15 9:18 上午
*/
public
class
CostTemplateApiDto
{
@Data
public
static
class
QueryListReq
{
@ApiModelProperty
(
value
=
"费用单模版名"
)
private
String
templateName
;
@ApiModelProperty
(
"创建人"
)
private
Integer
createUserId
;
@ApiModelProperty
(
"更新人"
)
private
Integer
updateUserId
;
@ApiModelProperty
(
"是否开启自动审核"
)
private
Boolean
enableAutoReview
;
@ApiModelProperty
(
"是否开启部门审核"
)
private
Boolean
enableDepartmentReview
;
@ApiModelProperty
(
"是否开启财务自动审核"
)
private
Boolean
enableFinancialAutoReview
;
@ApiModelProperty
(
"是否开启最终人审核"
)
private
Boolean
enableFinalReview
;
private
Boolean
setAutoCheck
;
@ApiModelProperty
(
"更新时间"
)
private
LocalDateTime
startTime
;
@ApiModelProperty
(
"更新时间"
)
private
LocalDateTime
endTime
;
@ApiModelProperty
(
"创建时间"
)
private
LocalDateTime
createStartTime
;
@ApiModelProperty
(
"创建时间"
)
private
LocalDateTime
createEndTime
;
private
Integer
pageNum
;
private
Integer
pageSize
;
}
}
//package com.blt.other.module.cost.dto;
//
//import io.swagger.annotations.ApiModelProperty;
//import lombok.Data;
//
//import java.time.LocalDateTime;
//
///**
// * <p>
// *
// * </p>
// *
// * @author robbendev
// * @since 2020/10/15 9:18 上午
// */
//public class CostTemplateApiDto {
//
//}
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/dto/CostTemplateBaseColApiReq.java
View file @
9b18a684
...
...
@@ -16,35 +16,5 @@ import lombok.Data;
public
final
class
CostTemplateBaseColApiReq
{
@Data
public
static
class
AddReq
{
@ApiModelProperty
(
value
=
"对应cost表字段名"
)
private
String
costCol
;
@ApiModelProperty
(
value
=
"对应cost表字段数据库类型"
)
private
String
costColType
;
@ApiModelProperty
(
"字段类目"
)
private
String
colCategory
;
@ApiModelProperty
(
"提示"
)
private
String
prompt
;
@ApiModelProperty
(
value
=
"表单字段名"
)
private
String
colName
;
@ApiModelProperty
(
value
=
"1-单行文本 2-多行文本 3-下拉框 4-多选 5-日期 6-附件"
)
private
Integer
colType
;
@ApiModelProperty
(
value
=
"表单字段数据来源 1. input 人工输入 2. api 网络请求 3. enum 枚举"
)
private
Integer
colDataSource
;
@ApiModelProperty
(
"是否扩展字段"
)
private
Boolean
isExtension
;
private
Integer
createUserId
;
}
}
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/dto/CostTemplateColApiReq.java
View file @
9b18a684
package
com
.
blt
.
other
.
module
.
cost
.
dto
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
org.springframework.format.annotation.DateTimeFormat
;
import
java.time.LocalDateTime
;
/**
* <p>
*
* </p>
*
* @author robbendev
* @since 2020/10/15 9:12 上午
*/
public
final
class
CostTemplateColApiReq
{
@Data
public
static
class
QueryListReq
{
private
Integer
costTemplateId
;
@ApiModelProperty
(
"字段类目"
)
private
String
colCategory
;
@ApiModelProperty
(
value
=
"表单字段名"
)
private
String
colName
;
@ApiModelProperty
(
value
=
"1-单行文本 2-多行文本 3-下拉框 4-多选 5-日期 6-附件"
)
private
Integer
colType
;
@ApiModelProperty
(
"提示"
)
private
String
prompt
;
private
Integer
createUserId
;
private
Integer
updateUserId
;
@ApiModelProperty
(
value
=
"是否必填"
)
private
Boolean
isRequired
;
@ApiModelProperty
(
"是否配置审批规则"
)
private
Boolean
isAutoRule
;
@ApiModelProperty
(
value
=
"审批符号 类型 1 = ;2 != ;3 < ;4 <= ;5 > ;6 >= ;7 list contain (校验值用逗号分隔) ;8 ! list contain (校验值用逗号分隔) "
)
private
Integer
autoRuleType
;
@DateTimeFormat
(
iso
=
DateTimeFormat
.
ISO
.
DATE_TIME
)
private
LocalDateTime
createTimeStart
;
@DateTimeFormat
(
iso
=
DateTimeFormat
.
ISO
.
DATE_TIME
)
private
LocalDateTime
createTimeEnd
;
@DateTimeFormat
(
iso
=
DateTimeFormat
.
ISO
.
DATE_TIME
)
private
LocalDateTime
updateTimeStart
;
@DateTimeFormat
(
iso
=
DateTimeFormat
.
ISO
.
DATE_TIME
)
private
LocalDateTime
updateTimeEnd
;
}
}
//package com.blt.other.module.cost.dto;
//
//import io.swagger.annotations.ApiModelProperty;
//import lombok.Data;
//import org.springframework.format.annotation.DateTimeFormat;
//
//import java.time.LocalDateTime;
//
///**
// * <p>
// *
// * </p>
// *
// * @author robbendev
// * @since 2020/10/15 9:12 上午
// */
//public final class CostTemplateColApiReq {
//
//
//
//}
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/dto/DeleteItemResp.java
View file @
9b18a684
...
...
@@ -16,6 +16,7 @@ import java.math.BigDecimal;
@ApiModel
(
"删除费用计划模版行项目出参"
)
@Data
public
class
DeleteItemResp
{
private
Boolean
success
;
private
String
msg
;
private
BigDecimal
planAmount
;
...
...
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/dto/DeleteResp.java
View file @
9b18a684
...
...
@@ -15,6 +15,7 @@ import lombok.Data;
@Data
@ApiModel
(
"更新费用计划出参"
)
public
class
DeleteResp
{
private
Boolean
success
;
private
String
msg
;
}
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/dto/GetAllCostPlanReq.java
View file @
9b18a684
...
...
@@ -12,7 +12,7 @@ import lombok.Data;
*/
@Data
public
final
class
GetAllCostPlanReq
{
public
class
GetAllCostPlanReq
{
private
Integer
pageNum
;
private
Integer
pageSize
;
...
...
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/dto/QueryListReq.java
0 → 100644
View file @
9b18a684
package
com
.
blt
.
other
.
module
.
cost
.
dto
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
org.springframework.format.annotation.DateTimeFormat
;
import
java.time.LocalDateTime
;
/**
* <p>
*
* </p>
*
* @author robbendev
* @since 2020/11/27 7:41 下午
*/
@Data
public
class
QueryListReq
{
private
Integer
costTemplateId
;
@ApiModelProperty
(
"字段类目"
)
private
String
colCategory
;
@ApiModelProperty
(
value
=
"表单字段名"
)
private
String
colName
;
@ApiModelProperty
(
value
=
"1-单行文本 2-多行文本 3-下拉框 4-多选 5-日期 6-附件"
)
private
Integer
colType
;
@ApiModelProperty
(
"提示"
)
private
String
prompt
;
private
Integer
createUserId
;
private
Integer
updateUserId
;
@ApiModelProperty
(
value
=
"是否必填"
)
private
Boolean
isRequired
;
@ApiModelProperty
(
"是否配置审批规则"
)
private
Boolean
isAutoRule
;
@ApiModelProperty
(
value
=
"审批符号 类型 1 = ;2 != ;3 < ;4 <= ;5 > ;6 >= ;7 list contain (校验值用逗号分隔) ;8 ! list contain (校验值用逗号分隔) "
)
private
Integer
autoRuleType
;
@DateTimeFormat
(
iso
=
DateTimeFormat
.
ISO
.
DATE_TIME
)
private
LocalDateTime
createTimeStart
;
@DateTimeFormat
(
iso
=
DateTimeFormat
.
ISO
.
DATE_TIME
)
private
LocalDateTime
createTimeEnd
;
@DateTimeFormat
(
iso
=
DateTimeFormat
.
ISO
.
DATE_TIME
)
private
LocalDateTime
updateTimeStart
;
@DateTimeFormat
(
iso
=
DateTimeFormat
.
ISO
.
DATE_TIME
)
private
LocalDateTime
updateTimeEnd
;
}
bailuntec-cost-core/src/main/java/com/blt/other/module/cost/vo/CostListSearchKeysVo.java
View file @
9b18a684
...
...
@@ -8,6 +8,7 @@ import java.util.Date;
@Data
public
class
CostListSearchKeysVo
{
private
Params
params
;
@Data
...
...
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