forked from integrated_whb/integrated_whb
整合education
parent
6b727bac90
commit
25aeaee31e
|
@ -17,7 +17,7 @@ public class StartWebsocketServer implements ApplicationRunner{
|
|||
|
||||
@Override
|
||||
public void run(ApplicationArguments var1) throws Exception{
|
||||
System.out.println("-------------------定时任务系统启动成功-------------------");
|
||||
System.out.println("-------------------系统启动成功-------------------");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -60,3 +60,9 @@ spring.main.banner-mode=off
|
|||
#spring.resources.static-locations=file:${web.upload-path},file:${web.front-path}
|
||||
config.basicInfo.id=011de03c1d0a412ca78e2e5d4637ea81
|
||||
config.basic.url=http://192.168.0.7:8082/zcouldProperty
|
||||
|
||||
customer.id=LAZ-20221129-3
|
||||
customer.SECRET_KEY=a256e8575c3f4240b08f6350f13ce8e2
|
||||
#开发
|
||||
customer.url=https://api.qhdsafety.com/sync/
|
||||
customer.domain=video.qhdsafety.com
|
||||
|
|
|
@ -1,132 +0,0 @@
|
|||
<?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.zcloud.mapper.datasource.system.ScheduleMapper">
|
||||
|
||||
<!--表名 -->
|
||||
<sql id="tableName">
|
||||
OA_SCHEDULE
|
||||
</sql>
|
||||
|
||||
<!--数据字典表名 -->
|
||||
<sql id="dicTableName">
|
||||
SYS_DICTIONARIES
|
||||
</sql>
|
||||
|
||||
<!-- 字段 -->
|
||||
<sql id="Field">
|
||||
f.TITLE,
|
||||
f.FHDESC,
|
||||
f.CDATA,
|
||||
f.USERNAME,
|
||||
f.SCHEDULE_ID
|
||||
</sql>
|
||||
|
||||
<!-- 字段用于新增 -->
|
||||
<sql id="Field2">
|
||||
TITLE,
|
||||
FHDESC,
|
||||
CDATA,
|
||||
USERNAME,
|
||||
SCHEDULE_ID
|
||||
</sql>
|
||||
|
||||
<!-- 字段值 -->
|
||||
<sql id="FieldValue">
|
||||
#{TITLE},
|
||||
#{FHDESC},
|
||||
#{CDATA},
|
||||
#{USERNAME},
|
||||
#{SCHEDULE_ID}
|
||||
</sql>
|
||||
|
||||
<!-- 新增-->
|
||||
<insert id="save" parameterType="pd">
|
||||
insert into
|
||||
<include refid="tableName"></include>
|
||||
(
|
||||
<include refid="Field2"></include>
|
||||
) values (
|
||||
<include refid="FieldValue"></include>
|
||||
)
|
||||
</insert>
|
||||
|
||||
<!-- 删除-->
|
||||
<delete id="delete" parameterType="pd">
|
||||
delete from
|
||||
<include refid="tableName"></include>
|
||||
where
|
||||
SCHEDULE_ID = #{SCHEDULE_ID}
|
||||
</delete>
|
||||
|
||||
<!-- 修改 -->
|
||||
<update id="edit" parameterType="pd">
|
||||
update
|
||||
<include refid="tableName"></include>
|
||||
set
|
||||
TITLE = #{TITLE},
|
||||
FHDESC = #{FHDESC},
|
||||
CDATA = #{CDATA},
|
||||
SCHEDULE_ID = SCHEDULE_ID
|
||||
where
|
||||
SCHEDULE_ID = #{SCHEDULE_ID}
|
||||
</update>
|
||||
|
||||
<!-- 通过ID获取数据 -->
|
||||
<select id="findById" parameterType="pd" resultType="pd">
|
||||
select
|
||||
<include refid="Field"></include>
|
||||
from
|
||||
<include refid="tableName"></include> f
|
||||
where
|
||||
f.SCHEDULE_ID = #{SCHEDULE_ID}
|
||||
</select>
|
||||
|
||||
<!-- 列表 -->
|
||||
<select id="datalistPage" parameterType="page" resultType="pd">
|
||||
select
|
||||
<include refid="Field"></include>
|
||||
from
|
||||
<include refid="tableName"></include> f
|
||||
where 1=1
|
||||
<if test="pd.KEYWORDS != null and pd.KEYWORDS != ''"><!-- 关键词检索 -->
|
||||
and
|
||||
(
|
||||
f.TITLE LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
|
||||
or
|
||||
f.FHDESC LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
|
||||
)
|
||||
</if>
|
||||
<if test="pd.USERNAME!=null and pd.USERNAME!=''"><!-- 根据用户名过滤 -->
|
||||
and f.USERNAME = #{pd.USERNAME}
|
||||
</if>
|
||||
order by f.CDATA desc
|
||||
</select>
|
||||
|
||||
<!-- 列表(全部) -->
|
||||
<select id="listAll" parameterType="pd" resultType="pd">
|
||||
select
|
||||
<include refid="Field"></include>
|
||||
from
|
||||
<include refid="tableName"></include> f
|
||||
where 1=1
|
||||
<if test="USERNAME!=null and USERNAME!=''"><!-- 根据用户名过滤 -->
|
||||
and f.USERNAME = #{USERNAME}
|
||||
</if>
|
||||
<if test="CDATA!=null and CDATA!=''"><!-- 根据日期过滤 -->
|
||||
and f.CDATA = #{CDATA}
|
||||
</if>
|
||||
</select>
|
||||
|
||||
<!-- 批量删除 -->
|
||||
<delete id="deleteAll" parameterType="String">
|
||||
delete from
|
||||
<include refid="tableName"></include>
|
||||
where
|
||||
SCHEDULE_ID in
|
||||
<foreach item="item" index="index" collection="array" open="(" separator="," close=")">
|
||||
#{item}
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
<!-- fh313596790qq(青苔) -->
|
||||
</mapper>
|
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD SQL Map Config 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-config.dtd">
|
||||
<configuration>
|
||||
|
||||
<typeAliases>
|
||||
<typeAlias type="com.zcloud.entity.PageData" alias="pd"/>
|
||||
<typeAlias type="com.zcloud.entity.Page" alias="page"/>
|
||||
<typeAlias type="com.zcloud.entity.system.User" alias="user"/>
|
||||
<typeAlias type="com.zcloud.entity.system.Menu" alias="menu"/>
|
||||
<typeAlias type="com.zcloud.entity.system.Role" alias="role"/>
|
||||
<typeAlias type="com.zcloud.entity.system.Dictionaries" alias="dictionaries"/>
|
||||
<typeAlias type="com.zcloud.entity.system.Department" alias="Department"/>
|
||||
<typeAlias type="com.zcloud.entity.system.Mfolder" alias="Mfolder"/>
|
||||
|
||||
<!-- 这里添加实体类 -->
|
||||
|
||||
</typeAliases>
|
||||
|
||||
</configuration>
|
Loading…
Reference in New Issue