Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
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
fangxinjiang
yifu-mvp
Commits
6fcb0d3d
Commit
6fcb0d3d
authored
1 month ago
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MVP1.7.7-入离职日志
parent
646d6c27
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
582 additions
and
0 deletions
+582
-0
TOperationLog.java
...java/com/yifu/cloud/plus/v1/csp/entity/TOperationLog.java
+126
-0
TOperationLogSearchVo.java
.../com/yifu/cloud/plus/v1/csp/vo/TOperationLogSearchVo.java
+57
-0
TOperationLogController.java
...cloud/plus/v1/csp/controller/TOperationLogController.java
+86
-0
TOperationLogMapper.java
...om/yifu/cloud/plus/v1/csp/mapper/TOperationLogMapper.java
+41
-0
TOperationLogService.java
.../yifu/cloud/plus/v1/csp/service/TOperationLogService.java
+58
-0
TOperationLogServiceImpl.java
...ud/plus/v1/csp/service/impl/TOperationLogServiceImpl.java
+123
-0
TOperationLogMapper.xml
...csp-biz/src/main/resources/mapper/TOperationLogMapper.xml
+91
-0
No files found.
yifu-csp/yifu-csp-api/src/main/java/com/yifu/cloud/plus/v1/csp/entity/TOperationLog.java
0 → 100644
View file @
6fcb0d3d
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
csp
.
entity
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
import
org.hibernate.validator.constraints.Length
;
import
javax.validation.constraints.NotBlank
;
import
java.time.LocalDateTime
;
/**
* 入离职等的操作日志
*
* @author hgw
* @date 2025-02-28 15:18:43
*/
@Data
@TableName
(
"t_operation_log"
)
@Schema
(
description
=
"入离职等的操作日志"
)
public
class
TOperationLog
{
/**
* id
*/
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
@ExcelProperty
(
"id"
)
@Schema
(
description
=
"id"
)
private
String
id
;
/**
* 关联ID
*/
@ExcelAttribute
(
name
=
"关联ID"
,
isNotEmpty
=
true
,
errorInfo
=
"关联ID不能为空"
,
maxLength
=
32
)
@NotBlank
(
message
=
"关联ID不能为空"
)
@Length
(
max
=
32
,
message
=
"关联ID不能超过32个字符"
)
@ExcelProperty
(
"关联ID"
)
@Schema
(
description
=
"关联ID"
)
private
String
mainId
;
/**
* 类型0入离职登记
*/
@ExcelAttribute
(
name
=
"类型0入离职登记"
,
isNotEmpty
=
true
,
errorInfo
=
"类型0入离职登记不能为空"
,
maxLength
=
1
)
@NotBlank
(
message
=
"类型0入离职登记不能为空"
)
@Length
(
max
=
1
,
message
=
"类型0入离职登记不能超过1个字符"
)
@ExcelProperty
(
"类型0入离职登记"
)
@Schema
(
description
=
"类型0入离职登记"
)
private
String
type
;
/**
* 标题
*/
@ExcelAttribute
(
name
=
"标题"
,
isNotEmpty
=
true
,
errorInfo
=
"标题不能为空"
,
maxLength
=
20
)
@NotBlank
(
message
=
"标题不能为空"
)
@Length
(
max
=
20
,
message
=
"标题不能超过20个字符"
)
@ExcelProperty
(
"标题"
)
@Schema
(
description
=
"标题"
)
private
String
title
;
/**
* 操作时间(档案里的入离职时间)
*/
@ExcelAttribute
(
name
=
"操作时间(档案里的入离职时间)"
,
isNotEmpty
=
true
,
errorInfo
=
"操作时间(档案里的入离职时间)不能为空"
,
isDate
=
true
)
@NotBlank
(
message
=
"操作时间(档案里的入离职时间)不能为空"
)
@ExcelProperty
(
"操作时间(档案里的入离职时间)"
)
@Schema
(
description
=
"操作时间(档案里的入离职时间)"
)
private
LocalDateTime
operationTime
;
/**
* 操作人姓名(档案里的人)
*/
@ExcelAttribute
(
name
=
"操作人姓名(档案里的人)"
,
isNotEmpty
=
true
,
errorInfo
=
"操作人姓名(档案里的人)不能为空"
,
maxLength
=
20
)
@NotBlank
(
message
=
"操作人姓名(档案里的人)不能为空"
)
@Length
(
max
=
20
,
message
=
"操作人姓名(档案里的人)不能超过20个字符"
)
@ExcelProperty
(
"操作人姓名(档案里的人)"
)
@Schema
(
description
=
"操作人姓名(档案里的人)"
)
private
String
operationName
;
/**
* 创建时间
*/
@ExcelAttribute
(
name
=
"创建时间"
,
isDate
=
true
)
@ExcelProperty
(
"创建时间"
)
@Schema
(
description
=
"创建时间"
)
private
LocalDateTime
createTime
;
/**
* 创建人
*/
@ExcelAttribute
(
name
=
"创建人"
,
maxLength
=
64
)
@Length
(
max
=
64
,
message
=
"创建人不能超过64个字符"
)
@ExcelProperty
(
"创建人"
)
@Schema
(
description
=
"创建人"
)
private
String
createBy
;
/**
* 创建人姓名
*/
@ExcelAttribute
(
name
=
"创建人姓名"
,
maxLength
=
32
)
@Length
(
max
=
32
,
message
=
"创建人姓名不能超过32个字符"
)
@ExcelProperty
(
"创建人姓名"
)
@Schema
(
description
=
"创建人姓名"
)
private
String
createName
;
/**
* 备注
*/
@ExcelAttribute
(
name
=
"备注"
,
maxLength
=
50
)
@Length
(
max
=
50
,
message
=
"备注不能超过50个字符"
)
@ExcelProperty
(
"备注"
)
@Schema
(
description
=
"备注"
)
private
String
remark
;
}
This diff is collapsed.
Click to expand it.
yifu-csp/yifu-csp-api/src/main/java/com/yifu/cloud/plus/v1/csp/vo/TOperationLogSearchVo.java
0 → 100644
View file @
6fcb0d3d
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
csp
.
vo
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
com.yifu.cloud.plus.v1.csp.entity.TOperationLog
;
import
java.time.LocalDateTime
;
import
lombok.Data
;
/**
* 入离职等的操作日志
*
* @author hgw
* @date 2025-02-28 15:18:43
*/
@Data
public
class
TOperationLogSearchVo
extends
TOperationLog
{
/**
* 多选导出或删除等操作
*/
@Schema
(
description
=
"选中ID,多个逗号分割"
)
private
String
ids
;
/**
* 创建时间区间 [开始时间,结束时间]
*/
@Schema
(
description
=
"创建时间区间"
)
private
LocalDateTime
[]
createTimes
;
/**
* @Author fxj
* 查询数据起
**/
@Schema
(
description
=
"查询limit 开始"
)
private
int
limitStart
;
/**
* @Author fxj
* 查询数据止
**/
@Schema
(
description
=
"查询limit 数据条数"
)
private
int
limitEnd
;
}
This diff is collapsed.
Click to expand it.
yifu-csp/yifu-csp-biz/src/main/java/com/yifu/cloud/plus/v1/csp/controller/TOperationLogController.java
0 → 100644
View file @
6fcb0d3d
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
csp
.
controller
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.csp.entity.TOperationLog
;
import
com.yifu.cloud.plus.v1.csp.service.TOperationLogService
;
import
com.yifu.cloud.plus.v1.csp.vo.TOperationLogSearchVo
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
io.swagger.v3.oas.annotations.Operation
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
lombok.RequiredArgsConstructor
;
import
org.springframework.web.bind.annotation.*
;
import
java.util.List
;
/**
* 入离职等的操作日志
*
* @author hgw
* @date 2025-02-28 15:18:43
*/
@RestController
@RequiredArgsConstructor
@RequestMapping
(
"/toperationlog"
)
@Tag
(
name
=
"入离职等的操作日志管理"
)
public
class
TOperationLogController
{
private
final
TOperationLogService
tOperationLogService
;
/**
* 简单分页查询
*
* @param page 分页对象
* @param tOperationLog 入离职等的操作日志
* @return
*/
@Operation
(
description
=
"简单分页查询"
)
@GetMapping
(
"/page"
)
public
R
<
IPage
<
TOperationLog
>>
getTOperationLogPage
(
Page
<
TOperationLog
>
page
,
TOperationLogSearchVo
tOperationLog
)
{
return
new
R
<>(
tOperationLogService
.
getTOperationLogPage
(
page
,
tOperationLog
));
}
/**
* 不分页查询
*
* @param tOperationLog 入离职等的操作日志
* @return
*/
@Operation
(
summary
=
"不分页查询"
,
description
=
"不分页查询"
)
@PostMapping
(
"/noPage"
)
public
R
<
List
<
TOperationLog
>>
getTOperationLogNoPage
(
@RequestBody
TOperationLogSearchVo
tOperationLog
)
{
return
R
.
ok
(
tOperationLogService
.
noPageDiy
(
tOperationLog
));
}
/**
* 通过id查询入离职等的操作日志
*
* @param id id
* @return R
*/
@Operation
(
summary
=
"通过id查询"
,
description
=
"通过id查询"
)
@GetMapping
(
"/{id}"
)
public
R
<
TOperationLog
>
getById
(
@PathVariable
(
"id"
)
String
id
)
{
return
R
.
ok
(
tOperationLogService
.
getById
(
id
));
}
}
This diff is collapsed.
Click to expand it.
yifu-csp/yifu-csp-biz/src/main/java/com/yifu/cloud/plus/v1/csp/mapper/TOperationLogMapper.java
0 → 100644
View file @
6fcb0d3d
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
csp
.
mapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.csp.entity.TOperationLog
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
/**
* 入离职等的操作日志
*
* @author hgw
* @date 2025-02-28 15:18:43
*/
@Mapper
public
interface
TOperationLogMapper
extends
BaseMapper
<
TOperationLog
>
{
/**
* 入离职等的操作日志简单分页查询
* @param tOperationLog 入离职等的操作日志
* @return
*/
IPage
<
TOperationLog
>
getTOperationLogPage
(
Page
<
TOperationLog
>
page
,
@Param
(
"tOperationLog"
)
TOperationLog
tOperationLog
);
}
This diff is collapsed.
Click to expand it.
yifu-csp/yifu-csp-biz/src/main/java/com/yifu/cloud/plus/v1/csp/service/TOperationLogService.java
0 → 100644
View file @
6fcb0d3d
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
csp
.
service
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.yifu.cloud.plus.v1.csp.entity.TOperationLog
;
import
com.yifu.cloud.plus.v1.csp.vo.TOperationLogSearchVo
;
import
java.time.LocalDateTime
;
import
java.util.List
;
/**
* 入离职等的操作日志
*
* @author hgw
* @date 2025-02-28 15:18:43
*/
public
interface
TOperationLogService
extends
IService
<
TOperationLog
>
{
/**
* 入离职等的操作日志简单分页查询
* @param tOperationLog 入离职等的操作日志
* @return
*/
IPage
<
TOperationLog
>
getTOperationLogPage
(
Page
<
TOperationLog
>
page
,
TOperationLogSearchVo
tOperationLog
);
List
<
TOperationLog
>
noPageDiy
(
TOperationLogSearchVo
searchVo
);
/**
* @param mainId 关联ID
* @param type 传0,就是入离职申请(可以为空)
* @param title 标题
* @param operationTime 操作时间
* @param operationName 操作人
* @param remark 备注(可以为空)
* @Description: 新增日志
* @Author: hgw
* @Date: 2025/2/28 16:13
* @return: com.yifu.cloud.plus.v1.csp.entity.TOperationLog
**/
TOperationLog
saveLog
(
String
mainId
,
String
type
,
String
title
,
LocalDateTime
operationTime
,
String
operationName
,
String
remark
);
}
This diff is collapsed.
Click to expand it.
yifu-csp/yifu-csp-biz/src/main/java/com/yifu/cloud/plus/v1/csp/service/impl/TOperationLogServiceImpl.java
0 → 100644
View file @
6fcb0d3d
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
csp
.
service
.
impl
;
import
cn.hutool.core.util.ArrayUtil
;
import
com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.toolkit.Wrappers
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.yifu.cloud.plus.v1.csp.entity.TOperationLog
;
import
com.yifu.cloud.plus.v1.csp.mapper.TOperationLogMapper
;
import
com.yifu.cloud.plus.v1.csp.service.TOperationLogService
;
import
com.yifu.cloud.plus.v1.csp.vo.TOperationLogSearchVo
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.CommonConstants
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.Common
;
import
com.yifu.cloud.plus.v1.yifu.common.core.vo.YifuUser
;
import
com.yifu.cloud.plus.v1.yifu.common.security.util.SecurityUtils
;
import
lombok.extern.log4j.Log4j2
;
import
org.springframework.stereotype.Service
;
import
java.time.LocalDateTime
;
import
java.util.List
;
/**
* 入离职等的操作日志
*
* @author hgw
* @date 2025-02-28 15:18:43
*/
@Log4j2
@Service
public
class
TOperationLogServiceImpl
extends
ServiceImpl
<
TOperationLogMapper
,
TOperationLog
>
implements
TOperationLogService
{
/**
* 入离职等的操作日志简单分页查询
*
* @param tOperationLog 入离职等的操作日志
* @return
*/
@Override
public
IPage
<
TOperationLog
>
getTOperationLogPage
(
Page
<
TOperationLog
>
page
,
TOperationLogSearchVo
tOperationLog
)
{
return
baseMapper
.
getTOperationLogPage
(
page
,
tOperationLog
);
}
@Override
public
List
<
TOperationLog
>
noPageDiy
(
TOperationLogSearchVo
searchVo
)
{
LambdaQueryWrapper
<
TOperationLog
>
wrapper
=
buildQueryWrapper
(
searchVo
);
List
<
String
>
idList
=
Common
.
getList
(
searchVo
.
getIds
());
if
(
Common
.
isNotNull
(
idList
))
{
wrapper
.
in
(
TOperationLog:
:
getId
,
idList
);
}
if
(
searchVo
.
getLimitStart
()
>=
0
&&
searchVo
.
getLimitEnd
()
>
0
)
{
wrapper
.
last
(
" limit "
+
searchVo
.
getLimitStart
()
+
","
+
searchVo
.
getLimitEnd
());
}
wrapper
.
orderByDesc
(
TOperationLog:
:
getCreateTime
);
return
baseMapper
.
selectList
(
wrapper
);
}
private
LambdaQueryWrapper
<
TOperationLog
>
buildQueryWrapper
(
TOperationLogSearchVo
entity
)
{
LambdaQueryWrapper
<
TOperationLog
>
wrapper
=
Wrappers
.
lambdaQuery
();
if
(
ArrayUtil
.
isNotEmpty
(
entity
.
getCreateTimes
()))
{
wrapper
.
ge
(
TOperationLog:
:
getCreateTime
,
entity
.
getCreateTimes
()[
0
]).
le
(
TOperationLog:
:
getCreateTime
,
entity
.
getCreateTimes
()[
1
]);
}
if
(
Common
.
isNotNull
(
entity
.
getCreateName
()))
{
wrapper
.
eq
(
TOperationLog:
:
getCreateName
,
entity
.
getCreateName
());
}
return
wrapper
;
}
/**
* @param mainId 关联ID
* @param type 传0,就是入离职申请(可以为空)
* @param title 标题
* @param operationTime 操作时间
* @param operationName 操作人
* @param remark 备注(可以为空)
* @Description: 新增日志
* @Author: hgw
* @Date: 2025/2/28 16:13
* @return: com.yifu.cloud.plus.v1.csp.entity.TOperationLog
**/
@Override
public
TOperationLog
saveLog
(
String
mainId
,
String
type
,
String
title
,
LocalDateTime
operationTime
,
String
operationName
,
String
remark
)
{
YifuUser
user
=
SecurityUtils
.
getUser
();
if
(
user
==
null
||
Common
.
isEmpty
(
user
.
getId
())
||
Common
.
isEmpty
(
mainId
)
||
Common
.
isEmpty
(
title
)
||
Common
.
isEmpty
(
operationTime
)
||
Common
.
isEmpty
(
operationName
))
{
return
null
;
}
TOperationLog
log
=
new
TOperationLog
();
log
.
setMainId
(
mainId
);
if
(
Common
.
isEmpty
(
type
))
{
type
=
CommonConstants
.
ZERO_STRING
;
}
log
.
setType
(
type
);
log
.
setTitle
(
title
);
log
.
setOperationTime
(
operationTime
);
log
.
setOperationName
(
operationName
);
log
.
setRemark
(
remark
);
log
.
setCreateBy
(
user
.
getId
());
log
.
setCreateName
(
user
.
getNickname
());
log
.
setCreateTime
(
LocalDateTime
.
now
());
log
.
setCreateTime
(
LocalDateTime
.
now
());
this
.
save
(
log
);
return
log
;
}
}
This diff is collapsed.
Click to expand it.
yifu-csp/yifu-csp-biz/src/main/resources/mapper/TOperationLogMapper.xml
0 → 100644
View file @
6fcb0d3d
<?xml version="1.0" encoding="UTF-8"?>
<!--
~
~ Copyright (c) 2018-2025, lengleng All rights reserved.
~
~ Redistribution and use in source and binary forms, with or without
~ modification, are permitted provided that the following conditions are met:
~
~ Redistributions of source code must retain the above copyright notice,
~ this list of conditions and the following disclaimer.
~ Redistributions in binary form must reproduce the above copyright
~ notice, this list of conditions and the following disclaimer in the
~ documentation and/or other materials provided with the distribution.
~ Neither the name of the yifu4cloud.com developer nor the names of its
~ contributors may be used to endorse or promote products derived from
~ this software without specific prior written permission.
~ Author: lengleng (wangiegie@gmail.com)
~
-->
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.yifu.cloud.plus.v1.csp.mapper.TOperationLogMapper"
>
<resultMap
id=
"tOperationLogMap"
type=
"com.yifu.cloud.plus.v1.csp.entity.TOperationLog"
>
<id
property=
"id"
column=
"ID"
/>
<result
property=
"mainId"
column=
"MAIN_ID"
/>
<result
property=
"type"
column=
"TYPE"
/>
<result
property=
"title"
column=
"TITLE"
/>
<result
property=
"operationTime"
column=
"OPERATION_TIME"
/>
<result
property=
"operationName"
column=
"OPERATION_NAME"
/>
<result
property=
"createTime"
column=
"CREATE_TIME"
/>
<result
property=
"createBy"
column=
"CREATE_BY"
/>
<result
property=
"createName"
column=
"CREATE_NAME"
/>
<result
property=
"remark"
column=
"REMARK"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
a.ID,
a.MAIN_ID,
a.TYPE,
a.TITLE,
a.OPERATION_TIME,
a.OPERATION_NAME,
a.CREATE_TIME,
a.CREATE_BY,
a.CREATE_NAME,
a.REMARK
</sql>
<sql
id=
"tOperationLog_where"
>
<if
test=
"tOperationLog != null"
>
<if
test=
"tOperationLog.id != null and tOperationLog.id.trim() != ''"
>
AND a.ID = #{tOperationLog.id}
</if>
<if
test=
"tOperationLog.mainId != null and tOperationLog.mainId.trim() != ''"
>
AND a.MAIN_ID = #{tOperationLog.mainId}
</if>
<if
test=
"tOperationLog.type != null and tOperationLog.type.trim() != ''"
>
AND a.TYPE = #{tOperationLog.type}
</if>
<if
test=
"tOperationLog.title != null and tOperationLog.title.trim() != ''"
>
AND a.TITLE = #{tOperationLog.title}
</if>
<if
test=
"tOperationLog.operationTime != null"
>
AND a.OPERATION_TIME = #{tOperationLog.operationTime}
</if>
<if
test=
"tOperationLog.operationName != null and tOperationLog.operationName.trim() != ''"
>
AND a.OPERATION_NAME = #{tOperationLog.operationName}
</if>
<if
test=
"tOperationLog.createTime != null"
>
AND a.CREATE_TIME = #{tOperationLog.createTime}
</if>
<if
test=
"tOperationLog.createBy != null and tOperationLog.createBy.trim() != ''"
>
AND a.CREATE_BY = #{tOperationLog.createBy}
</if>
<if
test=
"tOperationLog.createName != null and tOperationLog.createName.trim() != ''"
>
AND a.CREATE_NAME = #{tOperationLog.createName}
</if>
</if>
</sql>
<!--tOperationLog简单分页查询-->
<select
id=
"getTOperationLogPage"
resultMap=
"tOperationLogMap"
>
SELECT
<include
refid=
"Base_Column_List"
/>
FROM t_operation_log a
<where>
1=1
<include
refid=
"tOperationLog_where"
/>
</where>
</select>
</mapper>
This diff is collapsed.
Click to expand it.
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