| | |
| | | <result column="status" property="status" /> |
| | | </resultMap> |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | <select id="getById" resultMap="BaseResultMap"> |
| | | SELECT |
| | | LGCT.template_name, |
| | |
| | | lmk_goods_customize_template LGCT |
| | | WHERE |
| | | LGCT.delete_flag = 0 |
| | | <if test="query.templateName != null and query.templateName !=''"> |
| | | AND LGCT.template_name LIKE CONCAT('%',#{query.templateName},'%') |
| | | </if> |
| | | <if test="query.status != null and query.status !=''"> |
| | | AND LGCT.status = #{query.status} |
| | | </if> |
| | | order by LGCT.create_time DESC |
| | | </select> |
| | | <resultMap id="getCustomizeTemplateMap" type="cn.lili.modules.lmk.domain.vo.CustomizeTemplateVO"> |
| | | <id property="id" column="id"/> |