|
|
|
@ -1,6 +1,19 @@ |
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?> |
|
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|
|
|
|
<mapper namespace="com.huoran.users.mapper.EnterpriseCertificationMapper"> |
|
|
|
|
<delete id="deleteTeamInformation"> |
|
|
|
|
DELETE |
|
|
|
|
a, |
|
|
|
|
t, |
|
|
|
|
c |
|
|
|
|
FROM |
|
|
|
|
k_platform_team_account a |
|
|
|
|
INNER JOIN k_platform_team t ON t.manage_id = a.manage_id |
|
|
|
|
INNER JOIN k_platform_team_classification c ON c.id = t.classification_id |
|
|
|
|
WHERE |
|
|
|
|
a.account_id = #{accountId} |
|
|
|
|
</delete> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectEnterpriseCertificationList" |
|
|
|
|
resultType="com.huoran.users.entity.EnterpriseCertification"> |
|
|
|
|