查询query_type
This commit is contained in:
@ -56,7 +56,7 @@ public class BizExportDict implements Serializable {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ApiModelProperty(value = "")
|
@ApiModelProperty(value = "")
|
||||||
private Integer queryType;
|
private String queryType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 使能:0、不可用,1、可用
|
* 使能:0、不可用,1、可用
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
<result column="path" jdbcType="VARCHAR" property="path"/>
|
<result column="path" jdbcType="VARCHAR" property="path"/>
|
||||||
<result column="level" jdbcType="VARCHAR" property="level"/>
|
<result column="level" jdbcType="VARCHAR" property="level"/>
|
||||||
<result column="url" jdbcType="VARCHAR" property="url"/>
|
<result column="url" jdbcType="VARCHAR" property="url"/>
|
||||||
|
<result column="query_type" jdbcType="VARCHAR" property="queryType"/>
|
||||||
<result column="active" jdbcType="VARCHAR" property="active"/>
|
<result column="active" jdbcType="VARCHAR" property="active"/>
|
||||||
<result column="method_dict" jdbcType="VARCHAR" property="methodDict"/>
|
<result column="method_dict" jdbcType="VARCHAR" property="methodDict"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
@ -22,7 +23,7 @@
|
|||||||
</update>
|
</update>
|
||||||
|
|
||||||
<select id="selectDictList" parameterType="java.lang.String" resultMap="BaseResultMap">
|
<select id="selectDictList" parameterType="java.lang.String" resultMap="BaseResultMap">
|
||||||
SELECT `id`, `dic_name`, `path`, `level`, `url`
|
SELECT `id`, `dic_name`, `path`, `level`, `url`, `query_type`
|
||||||
FROM `biz_export_dict`
|
FROM `biz_export_dict`
|
||||||
where active = 1 AND (method_dict = #{type} OR method_dict = '0')
|
where active = 1 AND (method_dict = #{type} OR method_dict = '0')
|
||||||
ORDER BY id
|
ORDER BY id
|
||||||
|
Reference in New Issue
Block a user