|
@@ -8,10 +8,11 @@
|
|
|
<result property="sysNo" column="sys_no" />
|
|
|
<result property="sysRemark" column="sys_remark" />
|
|
|
<result property="sysProducts" column="sys_products" />
|
|
|
+ <result property="sysStatus" column="sys_status" />
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectDcSystemVo">
|
|
|
- select sys_id, sys_name, sys_no, sys_remark, sys_products
|
|
|
+ select sys_id, sys_name, sys_no, sys_remark, sys_products,sys_status
|
|
|
from dc_system
|
|
|
</sql>
|
|
|
|
|
@@ -24,6 +25,9 @@
|
|
|
<if test="sysNo != null and sysNo != ''">
|
|
|
AND sys_no = #{sysNo}
|
|
|
</if>
|
|
|
+ <if test="sysStatus!= null">
|
|
|
+ AND sys_status = #{sysStatus}
|
|
|
+ </if>
|
|
|
</where>
|
|
|
</select>
|
|
|
|