Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
张文彪
/
employmentBusinessPc
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
acd35aec
authored
Nov 26, 2025
by
zwb
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
招聘会演示平台搭建与简历导入
parent
e4dbdb03
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
133 additions
and
0 deletions
employmentBusiness-pc-common/employmentBusiness-pc-common-core/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
employmentBusiness-pc-common/employmentBusiness-pc-common-dict/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
employmentBusiness-pc-common/employmentBusiness-pc-common-doc/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
employmentBusiness-pc-common/employmentBusiness-pc-common-dubbo/src/main/resources/META-INF/dubbo/org.apache.dubbo.rpc.Filter
employmentBusiness-pc-common/employmentBusiness-pc-common-dubbo/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
employmentBusiness-pc-common/employmentBusiness-pc-common-encrypt/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
employmentBusiness-pc-common/employmentBusiness-pc-common-json/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
employmentBusiness-pc-common/employmentBusiness-pc-common-log/src/main/java/org/dromara/common/log/event/OperLogEvent.java
employmentBusiness-pc-common/employmentBusiness-pc-common-log/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
employmentBusiness-pc-common/employmentBusiness-pc-common-mybatis/src/main/resources/META-INF/dubbo/org.apache.dubbo.rpc.Filter
employmentBusiness-pc-common/employmentBusiness-pc-common-mybatis/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
employmentBusiness-pc-common/employmentBusiness-pc-common-redis/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
employmentBusiness-pc-common/employmentBusiness-pc-common-core/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
0 → 100644
View file @
acd35aec
org.dromara.common.core.utils.SpringUtils
org.dromara.common.core.config.ApplicationConfig
org.dromara.common.core.config.ValidatorConfig
org.dromara.common.core.config.ThreadPoolConfig
org.dromara.common.core.config.AsyncConfig
employmentBusiness-pc-common/employmentBusiness-pc-common-dict/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
0 → 100644
View file @
acd35aec
org.dromara.common.dict.service.impl.DictServiceImpl
employmentBusiness-pc-common/employmentBusiness-pc-common-doc/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
0 → 100644
View file @
acd35aec
org.dromara.common.doc.config.SpringDocAutoConfiguration
employmentBusiness-pc-common/employmentBusiness-pc-common-dubbo/src/main/resources/META-INF/dubbo/org.apache.dubbo.rpc.Filter
0 → 100644
View file @
acd35aec
dubboRequestFilter=org.dromara.common.dubbo.filter.DubboRequestFilter
employmentBusiness-pc-common/employmentBusiness-pc-common-dubbo/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
0 → 100644
View file @
acd35aec
org.dromara.common.dubbo.config.DubboConfiguration
employmentBusiness-pc-common/employmentBusiness-pc-common-encrypt/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
0 → 100644
View file @
acd35aec
org.dromara.common.encrypt.config.EncryptorAutoConfiguration
org.dromara.common.encrypt.config.ApiDecryptAutoConfiguration
employmentBusiness-pc-common/employmentBusiness-pc-common-json/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
0 → 100644
View file @
acd35aec
org.dromara.common.json.config.JacksonConfig
employmentBusiness-pc-common/employmentBusiness-pc-common-log/src/main/java/org/dromara/common/log/event/OperLogEvent.java
0 → 100644
View file @
acd35aec
package
org
.
dromara
.
common
.
log
.
event
;
import
lombok.Data
;
import
java.io.Serial
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
* 操作日志事件
*
* @author Lion Li
*/
@Data
public
class
OperLogEvent
implements
Serializable
{
@Serial
private
static
final
long
serialVersionUID
=
1L
;
/**
* 日志主键
*/
private
Long
operId
;
/**
* 租户ID
*/
private
String
tenantId
;
/**
* 操作模块
*/
private
String
title
;
/**
* 业务类型(0其它 1新增 2修改 3删除)
*/
private
Integer
businessType
;
/**
* 业务类型数组
*/
private
Integer
[]
businessTypes
;
/**
* 请求方法
*/
private
String
method
;
/**
* 请求方式
*/
private
String
requestMethod
;
/**
* 操作类别(0其它 1后台用户 2手机端用户)
*/
private
Integer
operatorType
;
/**
* 操作人员
*/
private
String
operName
;
/**
* 部门名称
*/
private
String
deptName
;
/**
* 请求url
*/
private
String
operUrl
;
/**
* 操作地址
*/
private
String
operIp
;
/**
* 操作地点
*/
private
String
operLocation
;
/**
* 请求参数
*/
private
String
operParam
;
/**
* 返回参数
*/
private
String
jsonResult
;
/**
* 操作状态(0正常 1异常)
*/
private
Integer
status
;
/**
* 错误消息
*/
private
String
errorMsg
;
/**
* 操作时间
*/
private
Date
operTime
;
/**
* 消耗时间
*/
private
Long
costTime
;
}
employmentBusiness-pc-common/employmentBusiness-pc-common-log/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
0 → 100644
View file @
acd35aec
org.dromara.common.log.event.LogEventListener
org.dromara.common.log.aspect.LogAspect
employmentBusiness-pc-common/employmentBusiness-pc-common-mybatis/src/main/resources/META-INF/dubbo/org.apache.dubbo.rpc.Filter
0 → 100644
View file @
acd35aec
dubboDataPermissionFilter=org.dromara.common.mybatis.filter.DubboDataPermissionFilter
employmentBusiness-pc-common/employmentBusiness-pc-common-mybatis/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
0 → 100644
View file @
acd35aec
org.dromara.common.mybatis.config.MybatisPlusConfiguration
employmentBusiness-pc-common/employmentBusiness-pc-common-redis/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
0 → 100644
View file @
acd35aec
org.dromara.common.redis.config.RedisConfiguration
org.dromara.common.redis.config.CacheConfiguration
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