工单模块
This commit is contained in:
@@ -11,8 +11,8 @@
|
||||
<result column="config_type" property="configType" jdbcType="VARCHAR"/>
|
||||
<result column="render_type" property="renderType" jdbcType="VARCHAR"/>
|
||||
<result column="description" property="description" jdbcType="VARCHAR"/>
|
||||
<result column="re" property="re" typeHandler="org.xyzh.common.utils.json.FastJson2TypeHandler"/>
|
||||
<result column="options" property="options" typeHandler="org.xyzh.common.utils.json.FastJson2TypeHandler"/>
|
||||
<result column="re" property="re" typeHandler="org.xyzh.common.jdbc.handler.FastJson2TypeHandler"/>
|
||||
<result column="options" property="options" typeHandler="org.xyzh.common.jdbc.handler.FastJson2TypeHandler"/>
|
||||
<result column="group" property="group" jdbcType="VARCHAR"/>
|
||||
<result column="module_id" property="moduleId" jdbcType="VARCHAR"/>
|
||||
<result column="order_num" property="orderNum" jdbcType="INTEGER"/>
|
||||
@@ -37,8 +37,8 @@
|
||||
<result column="config_type" property="configType" jdbcType="VARCHAR"/>
|
||||
<result column="render_type" property="renderType" jdbcType="VARCHAR"/>
|
||||
<result column="description" property="description" jdbcType="VARCHAR"/>
|
||||
<result column="re" property="re" typeHandler="org.xyzh.common.utils.json.FastJson2TypeHandler"/>
|
||||
<result column="options" property="options" typeHandler="org.xyzh.common.utils.json.FastJson2TypeHandler"/>
|
||||
<result column="re" property="re" typeHandler="org.xyzh.common.jdbc.handler.FastJson2TypeHandler"/>
|
||||
<result column="options" property="options" typeHandler="org.xyzh.common.jdbc.handler.FastJson2TypeHandler"/>
|
||||
<result column="group" property="group" jdbcType="VARCHAR"/>
|
||||
<result column="module_id" property="moduleId" jdbcType="VARCHAR"/>
|
||||
<result column="order_num" property="orderNum" jdbcType="INTEGER"/>
|
||||
|
||||
@@ -74,11 +74,16 @@
|
||||
<if test="wechatId != null and wechatId != ''">
|
||||
AND wechat_id = #{wechatId}
|
||||
</if>
|
||||
|
||||
</where>
|
||||
|
||||
LIMIT 1
|
||||
</select>
|
||||
|
||||
<select id="selectGuestByWechatId">
|
||||
SELECT <include refid="Base_Column_List"/>
|
||||
FROM sys.tb_guest
|
||||
WHERE wechat_id = #{wechat_id}
|
||||
LIMIT 1
|
||||
</select>
|
||||
|
||||
<select id="selectGuestList" resultMap="BaseResultMap">
|
||||
SELECT <include refid="Base_Column_List"/>
|
||||
|
||||
Reference in New Issue
Block a user