old mode 100644
new mode 100755
| | |
| | | ]]> |
| | | </select> |
| | | |
| | | <select id="getPrivilegeAll" resultType="com.java110.dto.basePrivilege.BasePrivilegeDto"> |
| | | <![CDATA[ |
| | | select t.p_id pId,t.name,t.domain,t.resource,t.description,t.create_time createTime from p_privilege t where t.status_cd = '0' |
| | | ]]> |
| | | </select> |
| | | |
| | | <select id="getDatabusAll" resultType="com.java110.dto.businessDatabus.BusinessDatabusDto"> |
| | | <![CDATA[ |
| | | SELECT |
| | | t.databus_id databusId, |
| | | t.databus_name databusName, |
| | | t.business_type_cd businessTypeCd, |
| | | t.bean_name beanName, |
| | | t.seq |
| | | FROM |
| | | c_business_databus t |
| | | WHERE |
| | | t.status_cd = '0' |
| | | AND t.state = '1001' |
| | | ]]> |
| | | </select> |
| | | |
| | | <select id="judgeAllBusinessCompleted" parameterType="map" resultType="map"> |
| | | SELECT co.* FROM c_orders co WHERE co.`o_id` = #{oId} and not exists ( |
| | | SELECT 1 FROM c_business cb WHERE cb.`o_id` = co.`o_id` |