feat: 初始化

This commit is contained in:
2024-04-09 11:34:46 +08:00
commit 39f3acc15f
3209 changed files with 253442 additions and 0 deletions
@@ -0,0 +1,6 @@
required=\u4E0D\u80FD\u4E3A\u7A7A
range=\u6709\u6548\u957f\u5ea6{min}\u5230{max}\u4e2a\u5b57\u7b26
email=\u90ae\u7bb1\u683c\u5f0f\u4e0d\u5408\u6cd5
mobile=\u624b\u673a\u53f7\u4e0d\u5408\u6cd5
noMoreThan=\u957f\u5ea6\u4e0d\u80fd\u8d85\u8fc7{max}\u4e2a\u5b57\u7b26
invalid=\u503c\u4e0d\u5408\u6cd5
@@ -0,0 +1,9 @@
████████ ██████ ████████ ████████ ███████ ██ ██
░░░░░░██ ░█░░░░██ ░░░░░░██ ░██░░░░░ ░██░░░░██ ░██ ░██
██ ░█ ░██ ██ ░██ ░██ ░██░██ ░██
██ ░██████ ██ █████░███████ ░██ ░██░██ ░██
██ ░█░░░░ ██ ██ ░░░░░ ░██░░░░ ░██ ░██░██ ░██
██ ░█ ░██ ██ ░██ ░██ ██ ░██ ░██
████████░███████ ████████ ░████████░███████ ░░███████
░░░░░░░░ ░░░░░░░ ░░░░░░░░ ░░░░░░░░ ░░░░░░░ ░░░░░░░
${spring.application.name}
@@ -0,0 +1,29 @@
spring:
profiles:
active: "@env-name@"
application:
name: FEBS-Server-Job
cloud:
nacos:
config:
server-addr: ${nacos.url}
group: DEFAULT_GROUP
prefix: febs-server-job
file-extension: yaml
discovery:
server-addr: ${nacos.url}
logging:
level:
org:
springframework:
boot:
actuate:
endpoint:
EndpointId: error
com:
alibaba:
cloud:
nacos:
client:
NacosPropertySourceBuilder: error
@@ -0,0 +1,17 @@
<?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.yida.data.job.mapper.JobMapper">
<select id="queryList" resultType="com.yida.data.common.core.entity.job.Job">
select job_id jobId,
bean_name beanName,
method_name methodName,
params,
cron_expression cronExpression,
status,
remark,
create_time createTime
from t_job
where STATUS = 0
order by job_id
</select>
</mapper>