Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
RuoYi-Vue-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
融通安全管理系统
RuoYi-Vue-master
Commits
ba596420
Commit
ba596420
authored
Dec 05, 2023
by
鲍德
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
现状风险代码初始化
parent
ae5e83fe
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
1132 additions
and
0 deletions
+1132
-0
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/controller/CurrentRiskDetailAbnormalController.java
...gtong/controller/CurrentRiskDetailAbnormalController.java
+104
-0
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/controller/CurrentRiskUserHolidayController.java
...rongtong/controller/CurrentRiskUserHolidayController.java
+104
-0
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/controller/CurrentRiskUserPatrolDetailController.java
...ong/controller/CurrentRiskUserPatrolDetailController.java
+104
-0
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/domain/CurrentRiskDetailAbnormal.java
...oft/censoftrongtong/domain/CurrentRiskDetailAbnormal.java
+54
-0
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/domain/CurrentRiskUserHoliday.java
...ensoft/censoftrongtong/domain/CurrentRiskUserHoliday.java
+67
-0
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/domain/CurrentRiskUserPatrolDetail.java
...t/censoftrongtong/domain/CurrentRiskUserPatrolDetail.java
+42
-0
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/mapper/CurrentRiskDetailAbnormalMapper.java
...nsoftrongtong/mapper/CurrentRiskDetailAbnormalMapper.java
+62
-0
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/mapper/CurrentRiskUserHolidayMapper.java
.../censoftrongtong/mapper/CurrentRiskUserHolidayMapper.java
+62
-0
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/mapper/CurrentRiskUserPatrolDetailMapper.java
...oftrongtong/mapper/CurrentRiskUserPatrolDetailMapper.java
+62
-0
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/service/ICurrentRiskDetailAbnormalService.java
...ftrongtong/service/ICurrentRiskDetailAbnormalService.java
+61
-0
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/service/ICurrentRiskUserHolidayService.java
...nsoftrongtong/service/ICurrentRiskUserHolidayService.java
+61
-0
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/service/ICurrentRiskUserPatrolDetailService.java
...rongtong/service/ICurrentRiskUserPatrolDetailService.java
+61
-0
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/service/impl/CurrentRiskDetailAbnormalServiceImpl.java
...ng/service/impl/CurrentRiskDetailAbnormalServiceImpl.java
+96
-0
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/service/impl/CurrentRiskUserHolidayServiceImpl.java
...gtong/service/impl/CurrentRiskUserHolidayServiceImpl.java
+96
-0
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/service/impl/CurrentRiskUserPatrolDetailServiceImpl.java
.../service/impl/CurrentRiskUserPatrolDetailServiceImpl.java
+96
-0
No files found.
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/controller/CurrentRiskDetailAbnormalController.java
0 → 100644
View file @
ba596420
package
com
.
censoft
.
censoftrongtong
.
controller
;
import
java.util.List
;
import
javax.servlet.http.HttpServletResponse
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.PutMapping
;
import
org.springframework.web.bind.annotation.DeleteMapping
;
import
org.springframework.web.bind.annotation.PathVariable
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
com.ruoyi.common.annotation.Log
;
import
com.ruoyi.common.core.controller.BaseController
;
import
com.ruoyi.common.core.domain.AjaxResult
;
import
com.ruoyi.common.enums.BusinessType
;
import
com.censoft.censoftrongtong.domain.CurrentRiskDetailAbnormal
;
import
com.censoft.censoftrongtong.service.ICurrentRiskDetailAbnormalService
;
import
com.ruoyi.common.utils.poi.ExcelUtil
;
import
com.ruoyi.common.core.page.TableDataInfo
;
/**
* 现状风险巡查异常信息Controller
*
* @author ruoyi
* @date 2023-12-05
*/
@RestController
@RequestMapping
(
"/risk/currentRiskAbnormal"
)
public
class
CurrentRiskDetailAbnormalController
extends
BaseController
{
@Autowired
private
ICurrentRiskDetailAbnormalService
currentRiskDetailAbnormalService
;
/**
* 查询现状风险巡查异常信息列表
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskAbnormal:list')"
)
@GetMapping
(
"/list"
)
public
TableDataInfo
list
(
CurrentRiskDetailAbnormal
currentRiskDetailAbnormal
)
{
startPage
();
List
<
CurrentRiskDetailAbnormal
>
list
=
currentRiskDetailAbnormalService
.
selectCurrentRiskDetailAbnormalList
(
currentRiskDetailAbnormal
);
return
getDataTable
(
list
);
}
/**
* 导出现状风险巡查异常信息列表
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskAbnormal:export')"
)
@Log
(
title
=
"现状风险巡查异常信息"
,
businessType
=
BusinessType
.
EXPORT
)
@PostMapping
(
"/export"
)
public
void
export
(
HttpServletResponse
response
,
CurrentRiskDetailAbnormal
currentRiskDetailAbnormal
)
{
List
<
CurrentRiskDetailAbnormal
>
list
=
currentRiskDetailAbnormalService
.
selectCurrentRiskDetailAbnormalList
(
currentRiskDetailAbnormal
);
ExcelUtil
<
CurrentRiskDetailAbnormal
>
util
=
new
ExcelUtil
<
CurrentRiskDetailAbnormal
>(
CurrentRiskDetailAbnormal
.
class
);
util
.
exportExcel
(
response
,
list
,
"现状风险巡查异常信息数据"
);
}
/**
* 获取现状风险巡查异常信息详细信息
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskAbnormal:query')"
)
@GetMapping
(
value
=
"/{id}"
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
{
return
success
(
currentRiskDetailAbnormalService
.
selectCurrentRiskDetailAbnormalById
(
id
));
}
/**
* 新增现状风险巡查异常信息
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskAbnormal:add')"
)
@Log
(
title
=
"现状风险巡查异常信息"
,
businessType
=
BusinessType
.
INSERT
)
@PostMapping
public
AjaxResult
add
(
@RequestBody
CurrentRiskDetailAbnormal
currentRiskDetailAbnormal
)
{
return
toAjax
(
currentRiskDetailAbnormalService
.
insertCurrentRiskDetailAbnormal
(
currentRiskDetailAbnormal
));
}
/**
* 修改现状风险巡查异常信息
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskAbnormal:edit')"
)
@Log
(
title
=
"现状风险巡查异常信息"
,
businessType
=
BusinessType
.
UPDATE
)
@PutMapping
public
AjaxResult
edit
(
@RequestBody
CurrentRiskDetailAbnormal
currentRiskDetailAbnormal
)
{
return
toAjax
(
currentRiskDetailAbnormalService
.
updateCurrentRiskDetailAbnormal
(
currentRiskDetailAbnormal
));
}
/**
* 删除现状风险巡查异常信息
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskAbnormal:remove')"
)
@Log
(
title
=
"现状风险巡查异常信息"
,
businessType
=
BusinessType
.
DELETE
)
@DeleteMapping
(
"/{ids}"
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
{
return
toAjax
(
currentRiskDetailAbnormalService
.
deleteCurrentRiskDetailAbnormalByIds
(
ids
));
}
}
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/controller/CurrentRiskUserHolidayController.java
0 → 100644
View file @
ba596420
package
com
.
censoft
.
censoftrongtong
.
controller
;
import
java.util.List
;
import
javax.servlet.http.HttpServletResponse
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.PutMapping
;
import
org.springframework.web.bind.annotation.DeleteMapping
;
import
org.springframework.web.bind.annotation.PathVariable
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
com.ruoyi.common.annotation.Log
;
import
com.ruoyi.common.core.controller.BaseController
;
import
com.ruoyi.common.core.domain.AjaxResult
;
import
com.ruoyi.common.enums.BusinessType
;
import
com.censoft.censoftrongtong.domain.CurrentRiskUserHoliday
;
import
com.censoft.censoftrongtong.service.ICurrentRiskUserHolidayService
;
import
com.ruoyi.common.utils.poi.ExcelUtil
;
import
com.ruoyi.common.core.page.TableDataInfo
;
/**
* 现状风险巡查用户请假Controller
*
* @author ruoyi
* @date 2023-12-05
*/
@RestController
@RequestMapping
(
"/risk/currentRiskHoliday"
)
public
class
CurrentRiskUserHolidayController
extends
BaseController
{
@Autowired
private
ICurrentRiskUserHolidayService
currentRiskUserHolidayService
;
/**
* 查询现状风险巡查用户请假列表
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskHoliday:list')"
)
@GetMapping
(
"/list"
)
public
TableDataInfo
list
(
CurrentRiskUserHoliday
currentRiskUserHoliday
)
{
startPage
();
List
<
CurrentRiskUserHoliday
>
list
=
currentRiskUserHolidayService
.
selectCurrentRiskUserHolidayList
(
currentRiskUserHoliday
);
return
getDataTable
(
list
);
}
/**
* 导出现状风险巡查用户请假列表
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskHoliday:export')"
)
@Log
(
title
=
"现状风险巡查用户请假"
,
businessType
=
BusinessType
.
EXPORT
)
@PostMapping
(
"/export"
)
public
void
export
(
HttpServletResponse
response
,
CurrentRiskUserHoliday
currentRiskUserHoliday
)
{
List
<
CurrentRiskUserHoliday
>
list
=
currentRiskUserHolidayService
.
selectCurrentRiskUserHolidayList
(
currentRiskUserHoliday
);
ExcelUtil
<
CurrentRiskUserHoliday
>
util
=
new
ExcelUtil
<
CurrentRiskUserHoliday
>(
CurrentRiskUserHoliday
.
class
);
util
.
exportExcel
(
response
,
list
,
"现状风险巡查用户请假数据"
);
}
/**
* 获取现状风险巡查用户请假详细信息
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskHoliday:query')"
)
@GetMapping
(
value
=
"/{id}"
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
{
return
success
(
currentRiskUserHolidayService
.
selectCurrentRiskUserHolidayById
(
id
));
}
/**
* 新增现状风险巡查用户请假
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskHoliday:add')"
)
@Log
(
title
=
"现状风险巡查用户请假"
,
businessType
=
BusinessType
.
INSERT
)
@PostMapping
public
AjaxResult
add
(
@RequestBody
CurrentRiskUserHoliday
currentRiskUserHoliday
)
{
return
toAjax
(
currentRiskUserHolidayService
.
insertCurrentRiskUserHoliday
(
currentRiskUserHoliday
));
}
/**
* 修改现状风险巡查用户请假
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskHoliday:edit')"
)
@Log
(
title
=
"现状风险巡查用户请假"
,
businessType
=
BusinessType
.
UPDATE
)
@PutMapping
public
AjaxResult
edit
(
@RequestBody
CurrentRiskUserHoliday
currentRiskUserHoliday
)
{
return
toAjax
(
currentRiskUserHolidayService
.
updateCurrentRiskUserHoliday
(
currentRiskUserHoliday
));
}
/**
* 删除现状风险巡查用户请假
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskHoliday:remove')"
)
@Log
(
title
=
"现状风险巡查用户请假"
,
businessType
=
BusinessType
.
DELETE
)
@DeleteMapping
(
"/{ids}"
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
{
return
toAjax
(
currentRiskUserHolidayService
.
deleteCurrentRiskUserHolidayByIds
(
ids
));
}
}
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/controller/CurrentRiskUserPatrolDetailController.java
0 → 100644
View file @
ba596420
package
com
.
censoft
.
censoftrongtong
.
controller
;
import
java.util.List
;
import
javax.servlet.http.HttpServletResponse
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.PutMapping
;
import
org.springframework.web.bind.annotation.DeleteMapping
;
import
org.springframework.web.bind.annotation.PathVariable
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
com.ruoyi.common.annotation.Log
;
import
com.ruoyi.common.core.controller.BaseController
;
import
com.ruoyi.common.core.domain.AjaxResult
;
import
com.ruoyi.common.enums.BusinessType
;
import
com.censoft.censoftrongtong.domain.CurrentRiskUserPatrolDetail
;
import
com.censoft.censoftrongtong.service.ICurrentRiskUserPatrolDetailService
;
import
com.ruoyi.common.utils.poi.ExcelUtil
;
import
com.ruoyi.common.core.page.TableDataInfo
;
/**
* 现状风险用户巡查明细Controller
*
* @author ruoyi
* @date 2023-12-05
*/
@RestController
@RequestMapping
(
"/risk/currentRiskPatrolDetail"
)
public
class
CurrentRiskUserPatrolDetailController
extends
BaseController
{
@Autowired
private
ICurrentRiskUserPatrolDetailService
currentRiskUserPatrolDetailService
;
/**
* 查询现状风险用户巡查明细列表
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskPatrolDetail:list')"
)
@GetMapping
(
"/list"
)
public
TableDataInfo
list
(
CurrentRiskUserPatrolDetail
currentRiskUserPatrolDetail
)
{
startPage
();
List
<
CurrentRiskUserPatrolDetail
>
list
=
currentRiskUserPatrolDetailService
.
selectCurrentRiskUserPatrolDetailList
(
currentRiskUserPatrolDetail
);
return
getDataTable
(
list
);
}
/**
* 导出现状风险用户巡查明细列表
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskPatrolDetail:export')"
)
@Log
(
title
=
"现状风险用户巡查明细"
,
businessType
=
BusinessType
.
EXPORT
)
@PostMapping
(
"/export"
)
public
void
export
(
HttpServletResponse
response
,
CurrentRiskUserPatrolDetail
currentRiskUserPatrolDetail
)
{
List
<
CurrentRiskUserPatrolDetail
>
list
=
currentRiskUserPatrolDetailService
.
selectCurrentRiskUserPatrolDetailList
(
currentRiskUserPatrolDetail
);
ExcelUtil
<
CurrentRiskUserPatrolDetail
>
util
=
new
ExcelUtil
<
CurrentRiskUserPatrolDetail
>(
CurrentRiskUserPatrolDetail
.
class
);
util
.
exportExcel
(
response
,
list
,
"现状风险用户巡查明细数据"
);
}
/**
* 获取现状风险用户巡查明细详细信息
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskPatrolDetail:query')"
)
@GetMapping
(
value
=
"/{id}"
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
{
return
success
(
currentRiskUserPatrolDetailService
.
selectCurrentRiskUserPatrolDetailById
(
id
));
}
/**
* 新增现状风险用户巡查明细
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskPatrolDetail:add')"
)
@Log
(
title
=
"现状风险用户巡查明细"
,
businessType
=
BusinessType
.
INSERT
)
@PostMapping
public
AjaxResult
add
(
@RequestBody
CurrentRiskUserPatrolDetail
currentRiskUserPatrolDetail
)
{
return
toAjax
(
currentRiskUserPatrolDetailService
.
insertCurrentRiskUserPatrolDetail
(
currentRiskUserPatrolDetail
));
}
/**
* 修改现状风险用户巡查明细
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskPatrolDetail:edit')"
)
@Log
(
title
=
"现状风险用户巡查明细"
,
businessType
=
BusinessType
.
UPDATE
)
@PutMapping
public
AjaxResult
edit
(
@RequestBody
CurrentRiskUserPatrolDetail
currentRiskUserPatrolDetail
)
{
return
toAjax
(
currentRiskUserPatrolDetailService
.
updateCurrentRiskUserPatrolDetail
(
currentRiskUserPatrolDetail
));
}
/**
* 删除现状风险用户巡查明细
*/
@PreAuthorize
(
"@ss.hasPermi('risk:currentRiskPatrolDetail:remove')"
)
@Log
(
title
=
"现状风险用户巡查明细"
,
businessType
=
BusinessType
.
DELETE
)
@DeleteMapping
(
"/{ids}"
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
{
return
toAjax
(
currentRiskUserPatrolDetailService
.
deleteCurrentRiskUserPatrolDetailByIds
(
ids
));
}
}
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/domain/CurrentRiskDetailAbnormal.java
0 → 100644
View file @
ba596420
package
com
.
censoft
.
censoftrongtong
.
domain
;
import
com.ruoyi.common.core.domain.BaseEntityClean
;
import
lombok.Data
;
import
org.apache.commons.lang3.builder.ToStringBuilder
;
import
org.apache.commons.lang3.builder.ToStringStyle
;
import
com.ruoyi.common.annotation.Excel
;
import
com.ruoyi.common.core.domain.BaseEntity
;
/**
* 现状风险巡查异常信息对象 current_risk_detail_abnormal
*
* @author ruoyi
* @date 2023-12-05
*/
@Data
public
class
CurrentRiskDetailAbnormal
extends
BaseEntityClean
{
private
static
final
long
serialVersionUID
=
1L
;
/** $column.columnComment */
private
Long
id
;
/** 巡查 id */
@Excel
(
name
=
"巡查 id"
)
private
Long
patrolId
;
/** 巡查明细id */
@Excel
(
name
=
"巡查明细id"
)
private
Long
patrolDetailId
;
/** 巡查内容 */
@Excel
(
name
=
"巡查内容"
)
private
String
riskContent
;
/** 巡查地点 */
@Excel
(
name
=
"巡查地点"
)
private
String
riskLocation
;
/** 异常说明 */
@Excel
(
name
=
"异常说明"
)
private
String
abnormalDesc
;
/** 评估等级 */
@Excel
(
name
=
"评估等级"
)
private
String
assessmentLevel
;
/** 排序 */
@Excel
(
name
=
"排序"
)
private
Long
sortNum
;
/** 删除标志(0代表存在 1代表删除) */
private
String
delFlag
;
}
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/domain/CurrentRiskUserHoliday.java
0 → 100644
View file @
ba596420
package
com
.
censoft
.
censoftrongtong
.
domain
;
import
java.util.Date
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
com.ruoyi.common.core.domain.BaseEntityClean
;
import
lombok.Data
;
import
org.apache.commons.lang3.builder.ToStringBuilder
;
import
org.apache.commons.lang3.builder.ToStringStyle
;
import
com.ruoyi.common.annotation.Excel
;
import
com.ruoyi.common.core.domain.BaseEntity
;
/**
* 现状风险巡查用户请假对象 current_risk_user_holiday
*
* @author ruoyi
* @date 2023-12-05
*/
@Data
public
class
CurrentRiskUserHoliday
extends
BaseEntityClean
{
private
static
final
long
serialVersionUID
=
1L
;
/** 主键 id */
private
Long
id
;
/** 申请人用户 id */
@Excel
(
name
=
"申请人用户 id"
)
private
Long
applyUserId
;
/** 审批人用户 id */
@Excel
(
name
=
"审批人用户 id"
)
private
Long
approveUserId
;
/** 申请时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@Excel
(
name
=
"申请时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd"
)
private
Date
applyTime
;
/** 审批时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@Excel
(
name
=
"审批时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd"
)
private
Date
approveTime
;
/** 假期时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@Excel
(
name
=
"假期时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd"
)
private
Date
holidayTime
;
/** 请假原因 */
@Excel
(
name
=
"请假原因"
)
private
String
reason
;
/** 审批描述 */
@Excel
(
name
=
"审批描述"
)
private
String
approveMsg
;
/** 状态 0 待审批 1 已通过 2 已拒绝 */
@Excel
(
name
=
"状态 0 待审批 1 已通过 2 已拒绝"
)
private
String
status
;
/** 排序 */
@Excel
(
name
=
"排序"
)
private
Long
sortNum
;
/** 删除标志(0代表存在 1代表删除) */
private
String
delFlag
;
}
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/domain/CurrentRiskUserPatrolDetail.java
0 → 100644
View file @
ba596420
package
com
.
censoft
.
censoftrongtong
.
domain
;
import
com.ruoyi.common.core.domain.BaseEntityClean
;
import
lombok.Data
;
import
org.apache.commons.lang3.builder.ToStringBuilder
;
import
org.apache.commons.lang3.builder.ToStringStyle
;
import
com.ruoyi.common.annotation.Excel
;
import
com.ruoyi.common.core.domain.BaseEntity
;
/**
* 现状风险用户巡查明细对象 current_risk_user_patrol_detail
*
* @author ruoyi
* @date 2023-12-05
*/
@Data
public
class
CurrentRiskUserPatrolDetail
extends
BaseEntityClean
{
private
static
final
long
serialVersionUID
=
1L
;
/** $column.columnComment */
private
Long
id
;
/** 巡查 id */
@Excel
(
name
=
"巡查 id"
)
private
Long
patrolId
;
/** 现有风险 id */
@Excel
(
name
=
"现有风险 id"
)
private
Long
currentRiskId
;
/** 状态 0 正常 1 异常 */
@Excel
(
name
=
"状态 0 正常 1 异常"
)
private
String
status
;
/** 排序 */
@Excel
(
name
=
"排序"
)
private
Long
sortNum
;
/** 删除标志(0代表存在 1代表删除) */
private
String
delFlag
;
}
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/mapper/CurrentRiskDetailAbnormalMapper.java
0 → 100644
View file @
ba596420
package
com
.
censoft
.
censoftrongtong
.
mapper
;
import
java.util.List
;
import
com.censoft.censoftrongtong.domain.CurrentRiskDetailAbnormal
;
import
com.github.yulichang.base.MPJBaseMapper
;
/**
* 现状风险巡查异常信息Mapper接口
*
* @author ruoyi
* @date 2023-12-05
*/
public
interface
CurrentRiskDetailAbnormalMapper
extends
MPJBaseMapper
<
CurrentRiskDetailAbnormal
>
{
/**
* 查询现状风险巡查异常信息
*
* @param id 现状风险巡查异常信息主键
* @return 现状风险巡查异常信息
*/
public
CurrentRiskDetailAbnormal
selectCurrentRiskDetailAbnormalById
(
Long
id
);
/**
* 查询现状风险巡查异常信息列表
*
* @param currentRiskDetailAbnormal 现状风险巡查异常信息
* @return 现状风险巡查异常信息集合
*/
public
List
<
CurrentRiskDetailAbnormal
>
selectCurrentRiskDetailAbnormalList
(
CurrentRiskDetailAbnormal
currentRiskDetailAbnormal
);
/**
* 新增现状风险巡查异常信息
*
* @param currentRiskDetailAbnormal 现状风险巡查异常信息
* @return 结果
*/
public
int
insertCurrentRiskDetailAbnormal
(
CurrentRiskDetailAbnormal
currentRiskDetailAbnormal
);
/**
* 修改现状风险巡查异常信息
*
* @param currentRiskDetailAbnormal 现状风险巡查异常信息
* @return 结果
*/
public
int
updateCurrentRiskDetailAbnormal
(
CurrentRiskDetailAbnormal
currentRiskDetailAbnormal
);
/**
* 删除现状风险巡查异常信息
*
* @param id 现状风险巡查异常信息主键
* @return 结果
*/
public
int
deleteCurrentRiskDetailAbnormalById
(
Long
id
);
/**
* 批量删除现状风险巡查异常信息
*
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public
int
deleteCurrentRiskDetailAbnormalByIds
(
Long
[]
ids
);
}
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/mapper/CurrentRiskUserHolidayMapper.java
0 → 100644
View file @
ba596420
package
com
.
censoft
.
censoftrongtong
.
mapper
;
import
java.util.List
;
import
com.censoft.censoftrongtong.domain.CurrentRiskUserHoliday
;
import
com.github.yulichang.base.MPJBaseMapper
;
/**
* 现状风险巡查用户请假Mapper接口
*
* @author ruoyi
* @date 2023-12-05
*/
public
interface
CurrentRiskUserHolidayMapper
extends
MPJBaseMapper
<
CurrentRiskUserHoliday
>
{
/**
* 查询现状风险巡查用户请假
*
* @param id 现状风险巡查用户请假主键
* @return 现状风险巡查用户请假
*/
public
CurrentRiskUserHoliday
selectCurrentRiskUserHolidayById
(
Long
id
);
/**
* 查询现状风险巡查用户请假列表
*
* @param currentRiskUserHoliday 现状风险巡查用户请假
* @return 现状风险巡查用户请假集合
*/
public
List
<
CurrentRiskUserHoliday
>
selectCurrentRiskUserHolidayList
(
CurrentRiskUserHoliday
currentRiskUserHoliday
);
/**
* 新增现状风险巡查用户请假
*
* @param currentRiskUserHoliday 现状风险巡查用户请假
* @return 结果
*/
public
int
insertCurrentRiskUserHoliday
(
CurrentRiskUserHoliday
currentRiskUserHoliday
);
/**
* 修改现状风险巡查用户请假
*
* @param currentRiskUserHoliday 现状风险巡查用户请假
* @return 结果
*/
public
int
updateCurrentRiskUserHoliday
(
CurrentRiskUserHoliday
currentRiskUserHoliday
);
/**
* 删除现状风险巡查用户请假
*
* @param id 现状风险巡查用户请假主键
* @return 结果
*/
public
int
deleteCurrentRiskUserHolidayById
(
Long
id
);
/**
* 批量删除现状风险巡查用户请假
*
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public
int
deleteCurrentRiskUserHolidayByIds
(
Long
[]
ids
);
}
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/mapper/CurrentRiskUserPatrolDetailMapper.java
0 → 100644
View file @
ba596420
package
com
.
censoft
.
censoftrongtong
.
mapper
;
import
java.util.List
;
import
com.censoft.censoftrongtong.domain.CurrentRiskUserPatrolDetail
;
import
com.github.yulichang.base.MPJBaseMapper
;
/**
* 现状风险用户巡查明细Mapper接口
*
* @author ruoyi
* @date 2023-12-05
*/
public
interface
CurrentRiskUserPatrolDetailMapper
extends
MPJBaseMapper
<
CurrentRiskUserPatrolDetail
>
{
/**
* 查询现状风险用户巡查明细
*
* @param id 现状风险用户巡查明细主键
* @return 现状风险用户巡查明细
*/
public
CurrentRiskUserPatrolDetail
selectCurrentRiskUserPatrolDetailById
(
Long
id
);
/**
* 查询现状风险用户巡查明细列表
*
* @param currentRiskUserPatrolDetail 现状风险用户巡查明细
* @return 现状风险用户巡查明细集合
*/
public
List
<
CurrentRiskUserPatrolDetail
>
selectCurrentRiskUserPatrolDetailList
(
CurrentRiskUserPatrolDetail
currentRiskUserPatrolDetail
);
/**
* 新增现状风险用户巡查明细
*
* @param currentRiskUserPatrolDetail 现状风险用户巡查明细
* @return 结果
*/
public
int
insertCurrentRiskUserPatrolDetail
(
CurrentRiskUserPatrolDetail
currentRiskUserPatrolDetail
);
/**
* 修改现状风险用户巡查明细
*
* @param currentRiskUserPatrolDetail 现状风险用户巡查明细
* @return 结果
*/
public
int
updateCurrentRiskUserPatrolDetail
(
CurrentRiskUserPatrolDetail
currentRiskUserPatrolDetail
);
/**
* 删除现状风险用户巡查明细
*
* @param id 现状风险用户巡查明细主键
* @return 结果
*/
public
int
deleteCurrentRiskUserPatrolDetailById
(
Long
id
);
/**
* 批量删除现状风险用户巡查明细
*
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public
int
deleteCurrentRiskUserPatrolDetailByIds
(
Long
[]
ids
);
}
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/service/ICurrentRiskDetailAbnormalService.java
0 → 100644
View file @
ba596420
package
com
.
censoft
.
censoftrongtong
.
service
;
import
java.util.List
;
import
com.censoft.censoftrongtong.domain.CurrentRiskDetailAbnormal
;
import
com.github.yulichang.base.MPJBaseService
;
/**
* 现状风险巡查异常信息Service接口
*
* @author ruoyi
* @date 2023-12-05
*/
public
interface
ICurrentRiskDetailAbnormalService
extends
MPJBaseService
<
CurrentRiskDetailAbnormal
>
{
/**
* 查询现状风险巡查异常信息
*
* @param id 现状风险巡查异常信息主键
* @return 现状风险巡查异常信息
*/
public
CurrentRiskDetailAbnormal
selectCurrentRiskDetailAbnormalById
(
Long
id
);
/**
* 查询现状风险巡查异常信息列表
*
* @param currentRiskDetailAbnormal 现状风险巡查异常信息
* @return 现状风险巡查异常信息集合
*/
public
List
<
CurrentRiskDetailAbnormal
>
selectCurrentRiskDetailAbnormalList
(
CurrentRiskDetailAbnormal
currentRiskDetailAbnormal
);
/**
* 新增现状风险巡查异常信息
*
* @param currentRiskDetailAbnormal 现状风险巡查异常信息
* @return 结果
*/
public
int
insertCurrentRiskDetailAbnormal
(
CurrentRiskDetailAbnormal
currentRiskDetailAbnormal
);
/**
* 修改现状风险巡查异常信息
*
* @param currentRiskDetailAbnormal 现状风险巡查异常信息
* @return 结果
*/
public
int
updateCurrentRiskDetailAbnormal
(
CurrentRiskDetailAbnormal
currentRiskDetailAbnormal
);
/**
* 批量删除现状风险巡查异常信息
*
* @param ids 需要删除的现状风险巡查异常信息主键集合
* @return 结果
*/
public
int
deleteCurrentRiskDetailAbnormalByIds
(
Long
[]
ids
);
/**
* 删除现状风险巡查异常信息信息
*
* @param id 现状风险巡查异常信息主键
* @return 结果
*/
public
int
deleteCurrentRiskDetailAbnormalById
(
Long
id
);
}
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/service/ICurrentRiskUserHolidayService.java
0 → 100644
View file @
ba596420
package
com
.
censoft
.
censoftrongtong
.
service
;
import
java.util.List
;
import
com.censoft.censoftrongtong.domain.CurrentRiskUserHoliday
;
import
com.github.yulichang.base.MPJBaseService
;
/**
* 现状风险巡查用户请假Service接口
*
* @author ruoyi
* @date 2023-12-05
*/
public
interface
ICurrentRiskUserHolidayService
extends
MPJBaseService
<
CurrentRiskUserHoliday
>
{
/**
* 查询现状风险巡查用户请假
*
* @param id 现状风险巡查用户请假主键
* @return 现状风险巡查用户请假
*/
public
CurrentRiskUserHoliday
selectCurrentRiskUserHolidayById
(
Long
id
);
/**
* 查询现状风险巡查用户请假列表
*
* @param currentRiskUserHoliday 现状风险巡查用户请假
* @return 现状风险巡查用户请假集合
*/
public
List
<
CurrentRiskUserHoliday
>
selectCurrentRiskUserHolidayList
(
CurrentRiskUserHoliday
currentRiskUserHoliday
);
/**
* 新增现状风险巡查用户请假
*
* @param currentRiskUserHoliday 现状风险巡查用户请假
* @return 结果
*/
public
int
insertCurrentRiskUserHoliday
(
CurrentRiskUserHoliday
currentRiskUserHoliday
);
/**
* 修改现状风险巡查用户请假
*
* @param currentRiskUserHoliday 现状风险巡查用户请假
* @return 结果
*/
public
int
updateCurrentRiskUserHoliday
(
CurrentRiskUserHoliday
currentRiskUserHoliday
);
/**
* 批量删除现状风险巡查用户请假
*
* @param ids 需要删除的现状风险巡查用户请假主键集合
* @return 结果
*/
public
int
deleteCurrentRiskUserHolidayByIds
(
Long
[]
ids
);
/**
* 删除现状风险巡查用户请假信息
*
* @param id 现状风险巡查用户请假主键
* @return 结果
*/
public
int
deleteCurrentRiskUserHolidayById
(
Long
id
);
}
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/service/ICurrentRiskUserPatrolDetailService.java
0 → 100644
View file @
ba596420
package
com
.
censoft
.
censoftrongtong
.
service
;
import
java.util.List
;
import
com.censoft.censoftrongtong.domain.CurrentRiskUserPatrolDetail
;
import
com.github.yulichang.base.MPJBaseService
;
/**
* 现状风险用户巡查明细Service接口
*
* @author ruoyi
* @date 2023-12-05
*/
public
interface
ICurrentRiskUserPatrolDetailService
extends
MPJBaseService
<
CurrentRiskUserPatrolDetail
>
{
/**
* 查询现状风险用户巡查明细
*
* @param id 现状风险用户巡查明细主键
* @return 现状风险用户巡查明细
*/
public
CurrentRiskUserPatrolDetail
selectCurrentRiskUserPatrolDetailById
(
Long
id
);
/**
* 查询现状风险用户巡查明细列表
*
* @param currentRiskUserPatrolDetail 现状风险用户巡查明细
* @return 现状风险用户巡查明细集合
*/
public
List
<
CurrentRiskUserPatrolDetail
>
selectCurrentRiskUserPatrolDetailList
(
CurrentRiskUserPatrolDetail
currentRiskUserPatrolDetail
);
/**
* 新增现状风险用户巡查明细
*
* @param currentRiskUserPatrolDetail 现状风险用户巡查明细
* @return 结果
*/
public
int
insertCurrentRiskUserPatrolDetail
(
CurrentRiskUserPatrolDetail
currentRiskUserPatrolDetail
);
/**
* 修改现状风险用户巡查明细
*
* @param currentRiskUserPatrolDetail 现状风险用户巡查明细
* @return 结果
*/
public
int
updateCurrentRiskUserPatrolDetail
(
CurrentRiskUserPatrolDetail
currentRiskUserPatrolDetail
);
/**
* 批量删除现状风险用户巡查明细
*
* @param ids 需要删除的现状风险用户巡查明细主键集合
* @return 结果
*/
public
int
deleteCurrentRiskUserPatrolDetailByIds
(
Long
[]
ids
);
/**
* 删除现状风险用户巡查明细信息
*
* @param id 现状风险用户巡查明细主键
* @return 结果
*/
public
int
deleteCurrentRiskUserPatrolDetailById
(
Long
id
);
}
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/service/impl/CurrentRiskDetailAbnormalServiceImpl.java
0 → 100644
View file @
ba596420
package
com
.
censoft
.
censoftrongtong
.
service
.
impl
;
import
java.util.List
;
import
com.ruoyi.common.utils.DateUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
com.censoft.censoftrongtong.mapper.CurrentRiskDetailAbnormalMapper
;
import
com.censoft.censoftrongtong.domain.CurrentRiskDetailAbnormal
;
import
com.censoft.censoftrongtong.service.ICurrentRiskDetailAbnormalService
;
import
com.github.yulichang.base.MPJBaseServiceImpl
;
/**
* 现状风险巡查异常信息Service业务层处理
*
* @author ruoyi
* @date 2023-12-05
*/
@Service
public
class
CurrentRiskDetailAbnormalServiceImpl
extends
MPJBaseServiceImpl
<
CurrentRiskDetailAbnormalMapper
,
CurrentRiskDetailAbnormal
>
implements
ICurrentRiskDetailAbnormalService
{
@Autowired
private
CurrentRiskDetailAbnormalMapper
currentRiskDetailAbnormalMapper
;
/**
* 查询现状风险巡查异常信息
*
* @param id 现状风险巡查异常信息主键
* @return 现状风险巡查异常信息
*/
@Override
public
CurrentRiskDetailAbnormal
selectCurrentRiskDetailAbnormalById
(
Long
id
)
{
return
currentRiskDetailAbnormalMapper
.
selectCurrentRiskDetailAbnormalById
(
id
);
}
/**
* 查询现状风险巡查异常信息列表
*
* @param currentRiskDetailAbnormal 现状风险巡查异常信息
* @return 现状风险巡查异常信息
*/
@Override
public
List
<
CurrentRiskDetailAbnormal
>
selectCurrentRiskDetailAbnormalList
(
CurrentRiskDetailAbnormal
currentRiskDetailAbnormal
)
{
return
currentRiskDetailAbnormalMapper
.
selectCurrentRiskDetailAbnormalList
(
currentRiskDetailAbnormal
);
}
/**
* 新增现状风险巡查异常信息
*
* @param currentRiskDetailAbnormal 现状风险巡查异常信息
* @return 结果
*/
@Override
public
int
insertCurrentRiskDetailAbnormal
(
CurrentRiskDetailAbnormal
currentRiskDetailAbnormal
)
{
currentRiskDetailAbnormal
.
setCreateTime
(
DateUtils
.
getNowDate
());
return
currentRiskDetailAbnormalMapper
.
insertCurrentRiskDetailAbnormal
(
currentRiskDetailAbnormal
);
}
/**
* 修改现状风险巡查异常信息
*
* @param currentRiskDetailAbnormal 现状风险巡查异常信息
* @return 结果
*/
@Override
public
int
updateCurrentRiskDetailAbnormal
(
CurrentRiskDetailAbnormal
currentRiskDetailAbnormal
)
{
currentRiskDetailAbnormal
.
setUpdateTime
(
DateUtils
.
getNowDate
());
return
currentRiskDetailAbnormalMapper
.
updateCurrentRiskDetailAbnormal
(
currentRiskDetailAbnormal
);
}
/**
* 批量删除现状风险巡查异常信息
*
* @param ids 需要删除的现状风险巡查异常信息主键
* @return 结果
*/
@Override
public
int
deleteCurrentRiskDetailAbnormalByIds
(
Long
[]
ids
)
{
return
currentRiskDetailAbnormalMapper
.
deleteCurrentRiskDetailAbnormalByIds
(
ids
);
}
/**
* 删除现状风险巡查异常信息信息
*
* @param id 现状风险巡查异常信息主键
* @return 结果
*/
@Override
public
int
deleteCurrentRiskDetailAbnormalById
(
Long
id
)
{
return
currentRiskDetailAbnormalMapper
.
deleteCurrentRiskDetailAbnormalById
(
id
);
}
}
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/service/impl/CurrentRiskUserHolidayServiceImpl.java
0 → 100644
View file @
ba596420
package
com
.
censoft
.
censoftrongtong
.
service
.
impl
;
import
java.util.List
;
import
com.ruoyi.common.utils.DateUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
com.censoft.censoftrongtong.mapper.CurrentRiskUserHolidayMapper
;
import
com.censoft.censoftrongtong.domain.CurrentRiskUserHoliday
;
import
com.censoft.censoftrongtong.service.ICurrentRiskUserHolidayService
;
import
com.github.yulichang.base.MPJBaseServiceImpl
;
/**
* 现状风险巡查用户请假Service业务层处理
*
* @author ruoyi
* @date 2023-12-05
*/
@Service
public
class
CurrentRiskUserHolidayServiceImpl
extends
MPJBaseServiceImpl
<
CurrentRiskUserHolidayMapper
,
CurrentRiskUserHoliday
>
implements
ICurrentRiskUserHolidayService
{
@Autowired
private
CurrentRiskUserHolidayMapper
currentRiskUserHolidayMapper
;
/**
* 查询现状风险巡查用户请假
*
* @param id 现状风险巡查用户请假主键
* @return 现状风险巡查用户请假
*/
@Override
public
CurrentRiskUserHoliday
selectCurrentRiskUserHolidayById
(
Long
id
)
{
return
currentRiskUserHolidayMapper
.
selectCurrentRiskUserHolidayById
(
id
);
}
/**
* 查询现状风险巡查用户请假列表
*
* @param currentRiskUserHoliday 现状风险巡查用户请假
* @return 现状风险巡查用户请假
*/
@Override
public
List
<
CurrentRiskUserHoliday
>
selectCurrentRiskUserHolidayList
(
CurrentRiskUserHoliday
currentRiskUserHoliday
)
{
return
currentRiskUserHolidayMapper
.
selectCurrentRiskUserHolidayList
(
currentRiskUserHoliday
);
}
/**
* 新增现状风险巡查用户请假
*
* @param currentRiskUserHoliday 现状风险巡查用户请假
* @return 结果
*/
@Override
public
int
insertCurrentRiskUserHoliday
(
CurrentRiskUserHoliday
currentRiskUserHoliday
)
{
currentRiskUserHoliday
.
setCreateTime
(
DateUtils
.
getNowDate
());
return
currentRiskUserHolidayMapper
.
insertCurrentRiskUserHoliday
(
currentRiskUserHoliday
);
}
/**
* 修改现状风险巡查用户请假
*
* @param currentRiskUserHoliday 现状风险巡查用户请假
* @return 结果
*/
@Override
public
int
updateCurrentRiskUserHoliday
(
CurrentRiskUserHoliday
currentRiskUserHoliday
)
{
currentRiskUserHoliday
.
setUpdateTime
(
DateUtils
.
getNowDate
());
return
currentRiskUserHolidayMapper
.
updateCurrentRiskUserHoliday
(
currentRiskUserHoliday
);
}
/**
* 批量删除现状风险巡查用户请假
*
* @param ids 需要删除的现状风险巡查用户请假主键
* @return 结果
*/
@Override
public
int
deleteCurrentRiskUserHolidayByIds
(
Long
[]
ids
)
{
return
currentRiskUserHolidayMapper
.
deleteCurrentRiskUserHolidayByIds
(
ids
);
}
/**
* 删除现状风险巡查用户请假信息
*
* @param id 现状风险巡查用户请假主键
* @return 结果
*/
@Override
public
int
deleteCurrentRiskUserHolidayById
(
Long
id
)
{
return
currentRiskUserHolidayMapper
.
deleteCurrentRiskUserHolidayById
(
id
);
}
}
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/service/impl/CurrentRiskUserPatrolDetailServiceImpl.java
0 → 100644
View file @
ba596420
package
com
.
censoft
.
censoftrongtong
.
service
.
impl
;
import
java.util.List
;
import
com.ruoyi.common.utils.DateUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
com.censoft.censoftrongtong.mapper.CurrentRiskUserPatrolDetailMapper
;
import
com.censoft.censoftrongtong.domain.CurrentRiskUserPatrolDetail
;
import
com.censoft.censoftrongtong.service.ICurrentRiskUserPatrolDetailService
;
import
com.github.yulichang.base.MPJBaseServiceImpl
;
/**
* 现状风险用户巡查明细Service业务层处理
*
* @author ruoyi
* @date 2023-12-05
*/
@Service
public
class
CurrentRiskUserPatrolDetailServiceImpl
extends
MPJBaseServiceImpl
<
CurrentRiskUserPatrolDetailMapper
,
CurrentRiskUserPatrolDetail
>
implements
ICurrentRiskUserPatrolDetailService
{
@Autowired
private
CurrentRiskUserPatrolDetailMapper
currentRiskUserPatrolDetailMapper
;
/**
* 查询现状风险用户巡查明细
*
* @param id 现状风险用户巡查明细主键
* @return 现状风险用户巡查明细
*/
@Override
public
CurrentRiskUserPatrolDetail
selectCurrentRiskUserPatrolDetailById
(
Long
id
)
{
return
currentRiskUserPatrolDetailMapper
.
selectCurrentRiskUserPatrolDetailById
(
id
);
}
/**
* 查询现状风险用户巡查明细列表
*
* @param currentRiskUserPatrolDetail 现状风险用户巡查明细
* @return 现状风险用户巡查明细
*/
@Override
public
List
<
CurrentRiskUserPatrolDetail
>
selectCurrentRiskUserPatrolDetailList
(
CurrentRiskUserPatrolDetail
currentRiskUserPatrolDetail
)
{
return
currentRiskUserPatrolDetailMapper
.
selectCurrentRiskUserPatrolDetailList
(
currentRiskUserPatrolDetail
);
}
/**
* 新增现状风险用户巡查明细
*
* @param currentRiskUserPatrolDetail 现状风险用户巡查明细
* @return 结果
*/
@Override
public
int
insertCurrentRiskUserPatrolDetail
(
CurrentRiskUserPatrolDetail
currentRiskUserPatrolDetail
)
{
currentRiskUserPatrolDetail
.
setCreateTime
(
DateUtils
.
getNowDate
());
return
currentRiskUserPatrolDetailMapper
.
insertCurrentRiskUserPatrolDetail
(
currentRiskUserPatrolDetail
);
}
/**
* 修改现状风险用户巡查明细
*
* @param currentRiskUserPatrolDetail 现状风险用户巡查明细
* @return 结果
*/
@Override
public
int
updateCurrentRiskUserPatrolDetail
(
CurrentRiskUserPatrolDetail
currentRiskUserPatrolDetail
)
{
currentRiskUserPatrolDetail
.
setUpdateTime
(
DateUtils
.
getNowDate
());
return
currentRiskUserPatrolDetailMapper
.
updateCurrentRiskUserPatrolDetail
(
currentRiskUserPatrolDetail
);
}
/**
* 批量删除现状风险用户巡查明细
*
* @param ids 需要删除的现状风险用户巡查明细主键
* @return 结果
*/
@Override
public
int
deleteCurrentRiskUserPatrolDetailByIds
(
Long
[]
ids
)
{
return
currentRiskUserPatrolDetailMapper
.
deleteCurrentRiskUserPatrolDetailByIds
(
ids
);
}
/**
* 删除现状风险用户巡查明细信息
*
* @param id 现状风险用户巡查明细主键
* @return 结果
*/
@Override
public
int
deleteCurrentRiskUserPatrolDetailById
(
Long
id
)
{
return
currentRiskUserPatrolDetailMapper
.
deleteCurrentRiskUserPatrolDetailById
(
id
);
}
}
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