| | |
| | | <result property="content" column="content" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="isDelete" column="is_delete" /> |
| | | <result property="isDeleted" column="is_deleted" /> |
| | | <result property="createBy" column="create_by" /> |
| | | </resultMap> |
| | | |
| | |
| | | content, |
| | | create_time, |
| | | update_time, |
| | | is_delete, |
| | | is_deleted, |
| | | create_by |
| | | from |
| | | blade_email_template |
| | |
| | | <if test="content != null and content != ''"> and content = #{content}</if> |
| | | <if test="createTime != null "> and create_time = #{createTime}</if> |
| | | <if test="updateTime != null "> and update_time = #{updateTime}</if> |
| | | <if test="isDelete != null "> and is_delete = #{isDelete}</if> |
| | | <if test="isDeleted != null "> and is_deleted = #{isDeleted}</if> |
| | | <if test="createBy != null "> and create_by = #{createBy}</if> |
| | | </where> |
| | | </select> |