1.4.4版本,新增模板消息通知、H5端商家管理发货修改及其列表时间显示修复

This commit is contained in:
hupeng
2019-12-13 19:23:56 +08:00
parent 2d89095296
commit a060e73e39
41 changed files with 1490 additions and 50 deletions

View File

@ -0,0 +1,18 @@
<?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="co.yixiang.modules.manage.mapper.YxExpressMapper">
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
id, code, name, sort, is_show
</sql>
<select id="getYxExpressById" resultType="co.yixiang.modules.manage.web.vo.YxExpressQueryVo">
select <include refid="Base_Column_List"/> from yx_express where id = #{id}
</select>
<select id="getYxExpressPageList" resultType="co.yixiang.modules.manage.web.vo.YxExpressQueryVo">
select <include refid="Base_Column_List"/> from yx_express
</select>
</mapper>