etms/WEB-INF/mapping/et_train_pd_classopener.map.xml
liyuchen c24bea2687 Initial commit: JCDP 教育培训管理系统 v54
- 系统管理模块(用户/角色/组织/权限/日志)
- 教育培训计划管理模块
- 教育培训实施模块
- 考试管理模块
- 调研问卷管理模块
- 外派培训管理模块
- 年度培训总结模块
- 学习资源管理模块
- 任职资格管理模块
- 即时通讯模块
- APP 版本管理
- 统计分析模块(FineReport)
- 代码审查标准和报告(CODE_REVIEW_GUIDE.md, CODE_REVIEW_REPORT.md)
- 项目开发指南(PROJECT_GUIDE.md)
2026-04-16 16:41:34 +08:00

24 lines
864 B
XML

<?xml version="1.0" encoding="utf-8"?>
<dynamic-sql>
<sql id="getClassOpenerList"><![CDATA[
select * from et_train_pd_classopener
where 1=1
<@p p=" and %s">card</@p>
<@p p=" and %s">person_id</@p>
<@p p=" and %s">confirm</@p>
<@p p=" and course_name like ? ">course_name</@p>
]]></sql>
<sql id="getClassOpenerListKc"><![CDATA[
select * from et_train_pd_classopener
where course_id is not null and LENGTH(course_id)!=0
<@p p=" and %s">card</@p>
<@p p=" and %s">person_id</@p>
<@p p=" and %s">confirm</@p>
<@p p=" and course_name like ? ">course_name</@p>
]]></sql>
<sql id="getUserDepartId"><![CDATA[
select orgcode,orgname from et_train_baseuser where <@p>usercode</@p>
]]></sql>
</dynamic-sql>