|
|
|
@ -273,4 +273,22 @@ |
|
|
|
|
WHERE |
|
|
|
|
id = #{id} |
|
|
|
|
</delete> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<resultMap id="groupInfoResultMap" |
|
|
|
|
type="com.dxhy.order.baseservice.module.groupmanagement.model.GroupManagementEntity"> |
|
|
|
|
<result column="group_id" jdbcType="VARCHAR" property="groupId"/> |
|
|
|
|
<result column="group_name" jdbcType="VARCHAR" property="groupName"/> |
|
|
|
|
<result column="xhf_nsrsbh" jdbcType="VARCHAR" property="xhfNsrsbh"/> |
|
|
|
|
</resultMap> |
|
|
|
|
|
|
|
|
|
<select id="findAllGroupInfo" resultMap="groupInfoResultMap"> |
|
|
|
|
select group_id,group_name,xhf_nsrsbh |
|
|
|
|
from sys_group_management |
|
|
|
|
where data_source = '0' |
|
|
|
|
and is_default = '0' |
|
|
|
|
and data_status = '0' |
|
|
|
|
and del_flag='0' |
|
|
|
|
group by group_id |
|
|
|
|
</select> |
|
|
|
|
</mapper> |
|
|
|
|