开业运营方案

This commit is contained in:
shuo.wang
2024-04-24 19:02:58 +08:00
parent 377873d8f1
commit 4404d250d6
39 changed files with 1238 additions and 7 deletions

View File

@@ -132,5 +132,15 @@
<include refid="Base_Column_List"/>
FROM enterprise_user_${enterpriseId} WHERE ( mobile = #{investmentManager} or `name` = #{investmentManager} ) and active = true LIMIT 1
</select>
<select id="selectNameByUserId" resultType="com.cool.store.dto.openPlan.UserInfoDTO">
select user_id as userId ,name ,
from enterprise_user_${enterpriseId}
where user_id in
<foreach item="userId" index="index" collection="userIdList" open="(" separator="," close=")">
#{userId}
</foreach>
</select>
</mapper>