| | |
| | | create_time, |
| | | update_by, |
| | | update_time, |
| | | remark |
| | | remark, |
| | | dept_id |
| | | |
| | | from sys_notice |
| | | </sql> |
| | | |
| | |
| | | |
| | | <insert id="insertNotice" parameterType="SysNotice"> |
| | | insert into sys_notice ( |
| | | <if test="noticeId != null and noticeId != '' ">notice_id,</if> |
| | | <if test="noticeTitle != null and noticeTitle != '' ">notice_title,</if> |
| | | <if test="noticeType != null and noticeType != '' ">notice_type,</if> |
| | | <if test="noticeContent != null and noticeContent != '' ">notice_content,</if> |
| | |
| | | <if test="createBy != null and createBy != ''">create_by,</if> |
| | | create_time |
| | | )values( |
| | | <if test="noticeId != null and noticeId != '' ">#{noticeId},</if> |
| | | <if test="noticeTitle != null and noticeTitle != ''">#{noticeTitle},</if> |
| | | <if test="noticeType != null and noticeType != ''">#{noticeType},</if> |
| | | <if test="noticeContent != null and noticeContent != ''">#{noticeContent},</if> |
| | |
| | | </foreach> |
| | | </delete> |
| | | |
| | | </mapper> |
| | | </mapper> |