| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282 |
- <?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.goafanti.common.dao.UserMapper">
- <select id="selectPersonalCustomerList" resultType="com.goafanti.customer.bo.CustomerListOut">
- select
- a.id as uid,
- a.type,
- a.status,
- date_format(a.create_time,'%Y-%m-%d %H:%i:%s') as createTime,
- a.business_audit as businessAudit,
- a.current_member_status as currentMemberStatus,
- a.identify_name as name,
- a.lvl,a.is_member as isMember,
- a.society_tag as societyTag,
- a.share_type as shareType,
- b.contacts,
- b.contact_mobile as contactMobile,
- b.international,
- b.expert,
- b.audit_status as auditStatus,
- dg1.name as province,
- dg2.name as city,
- dg3.name as area,
- c.name as industry,
- d.name as adminName,
- b.expert_audit as expertAudit
- from user a inner join user_identity b on a.id = b.uid
- left join district_glossory dg1 on b.province = dg1.id
- left join district_glossory dg2 on b.city = dg2.id
- left join district_glossory dg3 on b.area = dg3.id
- left join industry_category c on b.industry = c.id
- left join admin d on a.aid = d.id
- where a.type = 0 and a.status != 1
- <if test="aid != null and aid !=''">
- and a.aid = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="expertAudit != null and expertAudit !=''">
- and b.expert_audit = #{expertAudit,jdbcType=VARCHAR}
- </if>
- <if test="name != null and name != ''">
- and a.identify_name like concat('%',#{name},'%')
- </if>
- <if test="shareType != null">
- and a.share_type = #{shareType,jdbcType=VARCHAR}
- </if>
- <if test="status != null">
- and a.status = #{status,jdbcType=INTEGER}
- </if>
- <if test="businessAudit != null">
- and a.business_audit = #{businessAudit,jdbcType=INTEGER}
- </if>
- <if test="isMember != null">
- and a.is_member = #{isMember,jdbcType=INTEGER}
- </if>
- <if test="lvl != null">
- and a.lvl = #{lvl,jdbcType=INTEGER}
- </if>
- <if test="currentMemberStatus != null">
- and a.current_member_status = #{currentMemberStatus,jdbcType=INTEGER}
- </if>
- <if test="societyTag != null and societyTag != ''">
- and a.society_tag = #{societyTag,jdbcType=VARCHAR}
- </if>
- <if test="startDate != null and startDate != ''">
- and a.create_time > STR_TO_DATE(#{startDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="endDate != null and endDate != ''">
- and a.create_time < STR_TO_DATE(#{endDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="province != null">
- and b.province = #{province,jdbcType=INTEGER}
- </if>
- <if test="city != null">
- and b.city = #{city,jdbcType=INTEGER}
- </if>
- <if test="area != null">
- and b.area = #{area,jdbcType=INTEGER}
- </if>
- <if test="industry != null">
- and b.industry = #{industry,jdbcType=INTEGER}
- </if>
- <if test="expert != null">
- and b.expert = #{expert,jdbcType=INTEGER}
- </if>
- <if test="international != null">
- and b.international = #{international,jdbcType=INTEGER}
- </if>
- <if test="auditStatus != null">
- and b.audit_status = #{auditStatus,jdbcType=INTEGER}
- </if>
- order by a.create_time desc
- <if test="page_sql != null">
- ${page_sql}
- </if>
- </select>
- <select id="selectPersonalCustomerCount" resultType="java.lang.Integer">
- select count(0)
- from user a inner join user_identity b on a.id = b.uid
- left join district_glossory dg1 on b.province = dg1.id
- left join district_glossory dg2 on b.city = dg2.id
- left join district_glossory dg3 on b.area = dg3.id
- left join industry_category c on b.industry = c.id
- left join admin d on a.aid = d.id
- where a.type = 0 and a.status != 1 and a.audit_status = 1
- <if test="aid != null and aid !=''">
- and a.aid = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="name != null and name != ''">
- and a.identify_name like concat('%',#{name},'%')
- </if>
- <if test="expertAudit != null and expertAudit !=''">
- and b.expert_audit = #{expertAudit,jdbcType=VARCHAR}
- </if>
- <if test="shareType != null">
- and a.share_type = #{shareType,jdbcType=VARCHAR}
- </if>
- <if test="status != null">
- and a.status = #{status,jdbcType=INTEGER}
- </if>
- <if test="businessAudit != null">
- and a.business_audit = #{businessAudit,jdbcType=INTEGER}
- </if>
- <if test="isMember != null">
- and a.is_member = #{isMember,jdbcType=INTEGER}
- </if>
- <if test="lvl != null">
- and a.lvl = #{lvl,jdbcType=INTEGER}
- </if>
- <if test="currentMemberStatus != null">
- and a.current_member_status = #{currentMemberStatus,jdbcType=INTEGER}
- </if>
- <if test="societyTag != null and societyTag != ''">
- and a.society_tag = #{societyTag,jdbcType=VARCHAR}
- </if>
- <if test="startDate != null and startDate != ''">
- and a.create_time > STR_TO_DATE(#{startDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="endDate != null and endDate != ''">
- and a.create_time < STR_TO_DATE(#{endDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="province != null">
- and b.province = #{province,jdbcType=INTEGER}
- </if>
- <if test="city != null">
- and b.city = #{city,jdbcType=INTEGER}
- </if>
- <if test="area != null">
- and b.area = #{area,jdbcType=INTEGER}
- </if>
- <if test="industry != null">
- and b.industry = #{industry,jdbcType=INTEGER}
- </if>
- <if test="expert != null">
- and b.expert = #{expert,jdbcType=INTEGER}
- </if>
- <if test="international != null">
- and b.international = #{international,jdbcType=INTEGER}
- </if>
- <if test="auditStatus != null">
- and b.audit_status = #{auditStatus,jdbcType=INTEGER}
- </if>
- </select>
- <select id="selectOrganizationCustomerList" resultType="com.goafanti.customer.bo.CustomerListOut">
- select
- a.id as uid,
- a.type,
- a.status,
- date_format(a.create_time,'%Y-%m-%d %H:%i:%s') as createTime,
- a.business_audit as businessAudit,
- a.current_member_status as currentMemberStatus,
- a.identify_name as name,
- a.lvl,
- a.is_member as isMember,
- a.society_tag as societyTag,
- share_type as shareType,
- b.contacts,
- b.contact_mobile as contactMobile,
- b.international,
- b.listed,
- b.high_tech_zone as highTechZone,
- b.audit_status as auditStatus,
- dg1.name as province,
- dg2.name as city,
- dg3.name as area,
- c.name as industry,
- d.name as adminName
- from user a inner join organization_identity b on a.id = b.uid
- left join district_glossory dg1 on b.location_province = dg1.id
- left join district_glossory dg2 on b.location_city = dg2.id
- left join district_glossory dg3 on b.location_area = dg3.id
- left join industry_category c on b.industry = c.id
- left join admin d on a.aid = d.id
- where a.type = 1 and a.status != 1 and a.audit_status = 1
- <if test="aid != null and aid !=''">
- and a.aid = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="name != null and name != ''">
- and a.identify_name like concat('%',#{name},'%')
- </if>
- <if test="shareType != null">
- and a.share_type = #{shareType,jdbcType=VARCHAR}
- </if>
- <if test="status != null">
- and a.status = #{status,jdbcType=INTEGER}
- </if>
- <if test="businessAudit != null">
- and a.business_audit = #{businessAudit,jdbcType=INTEGER}
- </if>
- <if test="isMember != null">
- and a.is_member = #{isMember,jdbcType=INTEGER}
- </if>
- <if test="currentMemberStatus != null">
- and a.current_member_status = #{currentMemberStatus,jdbcType=INTEGER}
- </if>
- <if test="lvl != null">
- and a.lvl = #{lvl,jdbcType=INTEGER}
- </if>
- <if test="societyTag != null and societyTag != ''">
- and a.society_tag = #{societyTag,jdbcType=VARCHAR}
- </if>
- <if test="startDate != null and startDate != ''">
- and a.create_time > STR_TO_DATE(#{startDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="endDate != null and endDate != ''">
- and a.create_time < STR_TO_DATE(#{endDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="province != null">
- and b.location_province = #{province,jdbcType=INTEGER}
- </if>
- <if test="city != null">
- and b.location_city = #{city,jdbcType=INTEGER}
- </if>
- <if test="area != null">
- and b.location_area = #{area,jdbcType=INTEGER}
- </if>
- <if test="industry != null">
- and b.industry = #{industry,jdbcType=INTEGER}
- </if>
- <if test="listed != null">
- and b.listed = #{listed,jdbcType=INTEGER}
- </if>
- <if test="highTechZone != null">
- and b.high_tech_zone = #{highTechZone,jdbcType=INTEGER}
- </if>
- <if test="international != null">
- and b.international = #{international,jdbcType=INTEGER}
- </if>
- <if test="auditStatus != null">
- and b.audit_status = #{auditStatus,jdbcType=INTEGER}
- </if>
- order by a.create_time desc
- <if test="page_sql != null">
- ${page_sql}
- </if>
- </select>
- <select id="selectOrganizationCustomerCount" resultType="java.lang.Integer">
- select
- count(0)
- from user a inner join organization_identity b on a.id = b.uid
- where a.type = 1 and a.status != 1 and a.audit_status = 1
- <if test="aid != null and aid !=''">
- and a.aid = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="name != null and name != ''">
- and a.identify_name like concat('%',#{name},'%')
- </if>
- <if test="shareType != null">
- and a.share_type = #{shareType,jdbcType=VARCHAR}
- </if>
- <if test="status != null">
- and a.status = #{status,jdbcType=INTEGER}
- </if>
- <if test="businessAudit != null">
- and a.business_audit = #{businessAudit,jdbcType=INTEGER}
- </if>
- <if test="currentMemberStatus != null">
- and a.current_member_status = #{currentMemberStatus,jdbcType=INTEGER}
- </if>
- <if test="isMember != null">
- and a.is_member = #{isMember,jdbcType=INTEGER}
- </if>
- <if test="societyTag != null and societyTag != ''">
- and a.society_tag = #{societyTag,jdbcType=VARCHAR}
- </if>
- <if test="startDate != null and startDate != ''">
- and a.create_time > STR_TO_DATE(#{startDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="endDate != null and endDate != ''">
- and a.create_time < STR_TO_DATE(#{endDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="province != null">
- and b.location_province = #{province,jdbcType=INTEGER}
- </if>
- <if test="city != null">
- and b.location_city = #{city,jdbcType=INTEGER}
- </if>
- <if test="area != null">
- and b.location_area = #{area,jdbcType=INTEGER}
- </if>
- <if test="industry != null">
- and b.industry = #{industry,jdbcType=INTEGER}
- </if>
- <if test="listed != null">
- and b.listed = #{listed,jdbcType=INTEGER}
- </if>
- <if test="highTechZone != null">
- and b.high_tech_zone = #{highTechZone,jdbcType=INTEGER}
- </if>
- <if test="international != null">
- and b.international = #{international,jdbcType=INTEGER}
- </if>
- <if test="auditStatus != null">
- and b.audit_status = #{auditStatus,jdbcType=INTEGER}
- </if>
- </select>
-
- <select id="findCustomerByName" parameterType="java.lang.String" resultType="com.goafanti.customer.bo.CustomerSimpleBo">
- select id,identify_name as name from user where identify_name like
- concat('%',#{identifyName},'%') and status <![CDATA[!= ]]> 1 and audit_status = 1
- </select>
-
- <select id="judgeCustomerByName" resultType="java.lang.Integer">
- select count(0) from user where identify_name = #{identifyName,jdbcType=VARCHAR}
- and status <![CDATA[!= ]]> 1
- </select>
-
- <select id="findOrganizationCustomerDetail" parameterType="java.lang.String" resultType="com.goafanti.customer.bo.CustomerOrganizationDetailBo">
- select
- a.id as uid,
- a.society_tag as societyTag,
- a.company_logo_url as companyLogoUrl,
- a.introduction,
- a.identify_name as identifyName,
- a.business_audit as businessAudit,
- b.industry,
- b.location_province as locationProvince,
- b.location_city as locationCity,
- b.location_area as locationArea,
- b.postal_address as postalAddress,
- b.contacts_fixed_tel as contactsFixedTel,
- b.contacts_fax as contactsFax,
- b.registered_capital registeredCapital,
- b.enterprise_scale as enterpriseScale,
- b.legal_person as legalPerson,
- b.legal_person_id_card as legalPersonIdCard,
- b.legal_person_tel as legalPersonTel,
- b.legal_person_email as legalPersonEmail,
- b.high_tech_zone highTechZone,
- b.listed,
- b.international,
- b.org_code as orgCode,
- b.org_code_url as orgCodeUrl,
- b.business_scope as businessScope,
- b.id,
- b.contacts,
- b.contact_mobile as contactMobile,
- b.audit_status as auditStatus,
- b.licence_number as licenceNumber,
- a.aid as aid,d.name as adminName
- from
- user a inner join organization_identity b on a.id = b.uid
- left join admin d on d.id = a.aid
- where
- a.id = #{uid,jdbcType=VARCHAR}
- </select>
-
- <select id="findPersonalCustomerDetail" parameterType="java.lang.String" resultType="com.goafanti.customer.bo.CustomerPersonalDetailBo">
- select
- a.id as uid,
- a.identify_name as identifyName,
- a.society_tag as societyTag,
- a.head_portrait_url as headPortraitUrl,
- a.introduction,
- a.business_audit as businessAudit,
- b.id,
- b.industry,
- b.sex,
- b.date_of_birth_year as dateOfBirthYear,
- b.date_of_birth_month as dateOfBirthMonth,
- b.id_number as idNumber,
- b.province,
- b.city,
- b.area,
- b.positive_id_url as positiveIdUrl,
- b.opposite_id_url as oppositeIdUrl,
- b.postal_address as postalAddress,
- b.contact_mobile as contactMobile,
- b.fixed_tel as fixedTel,
- b.email,
- b.expert,
- b.international,
- b.contacts,
- b.contact_mobile as contactMobile,
- b.qq,
- b.professional_title as professionalTitle,
- b.work_unit as workUnit,
- b.education,
- b.major_category as majorCategory,
- b.qualification,
- b.audit_status as auditStatus,
- b.graduate_school as graduateSchool,
- b.consultation_price as consultationPrice,
- b.expert_audit as expertAudit,
- b.release_status as releaseStatus,
- a.aid as aid,d.name as adminName
- from
- user a inner join user_identity b on
- a.id = b.uid
- left join admin d on d.id = a.aid
- where
- a.id = #{uid,jdbcType=VARCHAR}
- </select>
-
- <select id="selectFollowHistoryList" resultType="com.goafanti.customer.bo.FollowListBo">
- select
- a.id as followId,
- a.create_time as followTime,
- a.contact_type as contactType,
- a.result,
- b.identify_name as identifyName,
- c.name as contacts,
- c.mobile as contactMobile,
- d.name as adminName
- <if test="businessGlossoryId != null and businessGlossoryId != ''"><!-- 客户甲项目A所有的跟进记录 -->
- ,e.id as ufbId,e.follow_situation as followSituation,e.customer_status as customerStatus
- </if>
- from user_follow a
- left join user b on a.uid = b.id
- left join organization_contact_book c on a.ocb_id = c.id
- left join admin d on a.aid = d.id
- <if test="businessGlossoryId != null and businessGlossoryId != ''"><!-- 客户甲项目A所有的跟进记录 -->
- inner join user_follow_business e on a.id = e.follow_id
- </if>
- where a.effective = 0
- <if test="uid != null and uid != ''">
- and a.uid = #{uid,jdbcType=VARCHAR}
- </if>
- <if test="aid != null and aid != ''">
- and a.aid = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="businessGlossoryId != null and businessGlossoryId != ''"><!-- 客户甲项目A所有的跟进记录 -->
- and e.business_glossory_id = #{businessGlossoryId,jdbcType=VARCHAR}
- </if>
- <if test="page_sql != null">
- ${page_sql}
- </if>
- </select>
- <select id="selectFollowHistoryCount" resultType="java.lang.Integer">
- select
- count(0)
- from user_follow a
- left join user b on a.uid = b.id
- left join organization_contact_book c on a.ocb_id = c.id
- left join admin d on a.aid = d.id
- <if test="businessGlossoryId != null and businessGlossoryId != ''"><!-- 客户甲项目A所有的跟进记录 -->
- inner join user_follow_business e on a.id = e.follow_id
- </if>
- where a.effective = 0
- <if test="uid != null and uid != ''">
- and a.uid = #{uid,jdbcType=VARCHAR}
- </if>
- <if test="aid != null and aid != ''">
- and a.aid = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="businessGlossoryId != null and businessGlossoryId != ''"><!-- 客户甲项目A所有的跟进记录 -->
- and e.business_glossory_id = #{businessGlossoryId,jdbcType=VARCHAR}
- </if>
- </select>
-
- <select id="findUserAccountDetail" parameterType="java.lang.String" resultType="com.goafanti.common.model.User">
- select
- id,
- mobile,
- nickname,
- create_time as createTime,
- type,
- source,
- email,
- is_member as isMember,
- lvl,
- current_member_status currentMemberStatus,
- business_audit as businessAudit,
- identify_name as identifyName,
- status
- from
- user
- where id = #{uid,jdbcType=VARCHAR}
- </select>
-
- <select id="findCustomerContacts" parameterType="java.lang.String" resultType="com.goafanti.common.model.OrganizationContactBook">
- select id,name,mobile,email,qq,wechat,depatrment,position,major from organization_contact_book
- where uid = #{uid,jdbcType=VARCHAR} and aid = #{aid,jdbcType=VARCHAR}
- </select>
-
- <select id="findAllContacts" parameterType="java.lang.String" resultType="com.goafanti.common.model.OrganizationContactBook">
- select id,name,mobile,major,sex,depatrment,wechat,qq from organization_contact_book
- where uid = #{uid,jdbcType=VARCHAR}
- </select>
-
- <select id="findFollowById" parameterType="java.lang.String" resultType="com.goafanti.customer.bo.FollowBusinessBo">
- select
- a.id as followId,
- a.uid,
- a.ocb_id as ocbId,
- a.contact_type as contactType,
- a.result,
- a.create_time as followTime,
- b.identify_name as identifyName,
- c.name as contacts,
- c.mobile as contactType,
- d.name as adminName
- from
- user_follow a
- left join user b on a.uid = b.id
- left join organization_contact_book c on a.ocb_id = c.id
- left join admin d on a.aid = d.id
- where a.id = #{followId,jdbcType=VARCHAR}
- </select>
- <select id="customerStatisticsList" resultType="com.goafanti.customer.bo.StatisticBo">
- select a.*,b.name as adminName,c.name as departmentName from (
- select
- aid,
- sum(case when customer_status = 0 then 1 else 0 end) as newNo, <!-- 新客户 -->
- sum(case when customer_status = 1 then 1 else 0 end) as intentionNo, <!-- 意向客户 -->
- sum(case when customer_status = 2 then 1 else 0 end) as pointNo, <!-- 重点客户 -->
- sum(case when customer_status = 3 then 1 else 0 end) as interviewNo, <!-- 面谈客户 -->
- sum(case when customer_status = 4 then 1 else 0 end) as signNo, <!-- 签单客户 -->
- sum(case when customer_status = 5 then 1 else 0 end) as refuseNo, <!-- 拒绝客户 -->
- sum(case when customer_status = 6 then 1 else 0 end) as stopNo <!-- 停止跟进 -->
- from user_business where 1=1
- <if test="sDate != null">
- and create_time > #{sDate,jdbcType=DATE}
- </if>
- <if test="eDate != null">
- and create_time < #{eDate,jdbcType=DATE}
- </if>
- <if test="businessGlossoryId != null">
- and business_glossory_id = #{businessGlossoryId,jdbcType=VARCHAR}
- </if>
- group by aid
- )a
- left join admin b on a.aid = b.id
- left join department_management c on b.department_id = c.id
- <if test="depNo != null">
- where c.dep_no like concat(#{depNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="page_sql != null">
- ${page_sql}
- </if>
- </select>
- <select id="customerStatisticsCount" resultType="java.lang.Integer">
- select count(0) from (
- select
- aid
- from user_business where 1=1
- <if test="sDate != null">
- and create_time > #{sDate,jdbcType=DATE}
- </if>
- <if test="eDate != null">
- and create_time < #{eDate,jdbcType=DATE}
- </if>
- <if test="businessGlossoryId != null">
- and business_glossory_id = #{businessGlossoryId,jdbcType=VARCHAR}
- </if>
- group by aid
- )a
- left join admin b on a.aid = b.id
- left join department_management c on b.department_id = c.id
- <if test="depNo !=null">
- where c.dep_no like concat(#{depNo,jdbcType=VARCHAR},'%')
- </if>
- </select>
-
- <select id="businessStatisticList" resultType="com.goafanti.customer.bo.StatisticBo">
- select a.*,b.name as adminName,c.name as departmentName from (
- select
- aid,
- sum(case when follow_situation = 0 then 1 else 0 end) as sendMaterialNo, <!-- 已发项目介绍资料 -->
- sum(case when follow_situation = 1 then 1 else 0 end) as interviewNo, <!-- 已约面谈 -->
- sum(case when follow_situation = 2 then 1 else 0 end) as sendProspectusNo, <!-- 已发合同计划书 -->
- sum(case when follow_situation = 3 then 1 else 0 end) as quoteNo, <!-- 已报价 -->
- sum(case when follow_situation = 4 then 1 else 0 end) as sendContractNo, <!-- 已发合同 -->
- sum(case when follow_situation = 5 then 1 else 0 end) as signContractNo, <!-- 已签合同 -->
- sum(case when follow_situation = 6 then 1 else 0 end) as onVisaNo, <!-- 面谈中 -->
- sum(case when follow_situation = 7 then 1 else 0 end) as visaNo <!-- 已面签 -->
- from user_business where 1=1
- <if test="sDate != null">
- and create_time > #{sDate,jdbcType=DATE}
- </if>
- <if test="eDate != null">
- and create_time < #{eDate,jdbcType=DATE}
- </if>
- <if test="businessGlossoryId != null">
- and business_glossory_id = #{businessGlossoryId,jdbcType=VARCHAR}
- </if>
- group by aid
- )a
- left join admin b on a.aid = b.id
- left join department_management c on b.department_id = c.id
- <if test="depNo !=null">
- where c.dep_no like concat(#{depNo,jdbcType=VARCHAR},'%')
- </if>
- <if test="page_sql != null">
- ${page_sql}
- </if>
- </select>
-
- <select id="businessStatisticCount" resultType="java.lang.Integer">
- select count(0) from (
- select
- aid
- from user_business where 1=1
- <if test="sDate != null">
- and create_time > #{sDate,jdbcType=DATE}
- </if>
- <if test="eDate != null">
- and create_time < #{eDate,jdbcType=DATE}
- </if>
- <if test="businessGlossoryId != null">
- and business_glossory_id = #{businessGlossoryId,jdbcType=VARCHAR}
- </if>
- group by aid
- )a
- left join admin b on a.aid = b.id
- left join department_management c on b.department_id = c.id
- <if test="depNo !=null">
- where c.dep_no like concat(#{depNo,jdbcType=VARCHAR},'%')
- </if>
- </select>
-
- <select id="followStatisticList" resultType="com.goafanti.customer.bo.StatisticBo">
- select x.*,b.name as adminName,c.name as departmentName,y.* from (
- select
- count(0) as followNo,
- aid,
- sum(case when contact_type = 0 then 1 else 0 end) as visitNo, <!-- 外出 -->
- sum(case when contact_type = 1 then 1 else 0 end) as telNo, <!-- 电话 -->
- sum(case when contact_type = 2 then 1 else 0 end) as qqNo, <!-- QQ -->
- sum(case when contact_type = 3 then 1 else 0 end) as wxNo, <!-- 微信 -->
- sum(case when contact_type = 4 then 1 else 0 end) as emailNo, <!-- 邮件 -->
- sum(case when contact_type = 5 then 1 else 0 end) as letterNo <!-- 书信 -->
- from user_follow where 1=1
- <if test="sDate != null">
- and create_time > #{sDate,jdbcType=DATE}
- </if>
- <if test="eDate != null">
- and create_time < #{eDate,jdbcType=DATE}
- </if>
- group by aid
- )x
- left join admin b on x.aid = b.id
- left join department_management c on b.department_id = c.id
- left join
- (
- select
- count( 0 ) as customerNo,
- aid
- from
- (
- select
- aid,
- uid
- from
- user_follow
-
- group by
- aid,
- uid
- ) a
- group by
- aid
- )y on x.aid = y.aid
- <if test="depNo !=null">
- where c.dep_no like concat(#{depNo,jdbcType=VARCHAR},'%')
- </if>
- </select>
-
- <select id="followStatisticCount" resultType="java.lang.Integer">
- select count(0) from (
- select
- aid
- from user_follow where 1=1
- <if test="sDate != null">
- and create_time > #{sDate,jdbcType=DATE}
- </if>
- <if test="sDate != null">
- and create_time < #{eDate,jdbcType=DATE}
- </if>
- group by aid
- )x
- left join admin b on x.aid = b.id
- left join department_management c on b.department_id = c.id
- <if test="depNo !=null">
- where c.dep_no like concat(#{depNo,jdbcType=VARCHAR},'%')
- </if>
- </select>
-
- <select id="findBusinessByFollowId" parameterType="java.lang.String" resultType="com.goafanti.common.model.UserBusiness">
- select
- a.id,
- a.follow_situation as followSituation,
- a.customer_status as customerStatus,
- a.remarks,
- a.business_glossory_id as businessGlossoryId
- from
- user_follow_business a
- where a.follow_id = #{followId,jdbcType=VARCHAR}
- </select>
-
- <select id="selectBusinessList" resultType="com.goafanti.customer.bo.BusinessListBo">
- select
- c.name as businessName,
- b.identify_name as identifyName,
- a.id as businessId,
- a.create_time as createTime,
- a.update_time as updateTime,
- a.follow_situation as followSituation,
- a.customer_status as customerStatus,
- d.name as adminName
- from
- user_business a inner join user b on
- a.uid = b.id left join business_glossory c on
- a.business_glossory_id = c.id left join admin d on
- a.aid = d.id
- where 1 = 1
- <if test="aid != null and aid != ''">
- and a.aid = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="uid != null and uid !=''">
- and a.uid = #{uid,jdbcType=VARCHAR}
- </if>
- <if test="businessGlossoryId !=null and businessGlossoryId != ''">
- and a.business_glossory_id = #{businessGlossoryId,jdbcType=VARCHAR}
- </if>
- <if test="identifyName != null and identifyName != ''">
- and b.identify_name like concat('%', #{identifyName},'%')
- </if>
- <if test="followSituation != null">
- and a.follow_situation = #{followSituation,jdbcType=INTEGER}
- </if>
- <if test="customerStatus != null">
- and a.customer_status = #{customerStatus,jdbcType=INTEGER}
- </if>
- <if test="adminName != null and adminName != ''">
- and d.name = #{adminName,jdbcType=VARCHAR}
- </if>
- <if test="startDate != null and startDate != ''">
- and a.create_time > STR_TO_DATE(#{startDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="endDate != null and endDate != ''">
- and a.create_time < STR_TO_DATE(#{endDate},'%Y-%m-%d %H:%i:%s')
- </if>
- order by a.create_time desc
- <if test="page_sql != null">
- ${page_sql}
- </if>
- </select>
-
- <select id="selectBusinessCount" parameterType="com.goafanti.customer.bo.BusinessListBo" resultType="java.lang.Integer">
- select
- count(0)
- from
- user_business a inner join user b on
- a.uid = b.id left join business_glossory c on
- a.business_glossory_id = c.id left join admin d on
- a.aid = d.id
- where 1 = 1
- <if test="aid != null and aid != ''">
- and a.aid = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="uid != null and uid !=''">
- and a.uid = #{uid,jdbcType=VARCHAR}
- </if>
- <if test="businessGlossoryId !=null and businessGlossoryId != ''">
- and a.business_glossory_id = #{businessGlossoryId,jdbcType=VARCHAR}
- </if>
- <if test="identifyName != null and identifyName != ''">
- and b.identify_name like concat('%', #{identifyName},'%')
- </if>
- <if test="followSituation != null">
- and a.follow_situation = #{followSituation,jdbcType=INTEGER}
- </if>
- <if test="customerStatus != null">
- and a.customer_status = #{customerStatus,jdbcType=INTEGER}
- </if>
- <if test="adminName != null and adminName != ''">
- and d.name = #{adminName,jdbcType=VARCHAR}
- </if>
- <if test="startDate != null and startDate != ''">
- and a.create_time > STR_TO_DATE(#{startDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="endDate != null and endDate != ''">
- and a.create_time < STR_TO_DATE(#{endDate},'%Y-%m-%d %H:%i:%s')
- </if>
- </select>
-
- <select id="selectBusinessManageList" resultType="com.goafanti.customer.bo.BusinessListBo">
- select
- c.name as businessName,
- b.identify_name as identifyName,
- a.id as businessId,
- a.create_time as createTime,
- a.update_time as updateTime,
- a.follow_situation as followSituation,
- a.customer_status as customerStatus,
- d.name as adminName
- from
- user_business a inner join user b on
- a.uid = b.id left join business_glossory c on
- a.business_glossory_id = c.id left join admin d on
- a.aid = d.id
- LEFT JOIN department_management dm on dm.id = d.department_id
- where 1 = 1
- <if test="aid != null and aid != ''">
- and (b.aid = #{aid,jdbcType=VARCHAR} or d.department_id=(select department_id from admin where id=#{aid,jdbcType=VARCHAR}))
- </if>
- <if test="uid != null and uid !=''">
- and a.uid = #{uid,jdbcType=VARCHAR}
- </if>
- <if test="businessGlossoryId !=null and businessGlossoryId != ''">
- and a.business_glossory_id = #{businessGlossoryId,jdbcType=VARCHAR}
- </if>
- <if test="identifyName != null and identifyName != ''">
- and b.identify_name like concat('%', #{identifyName},'%')
- </if>
- <if test="followSituation != null">
- and a.follow_situation = #{followSituation,jdbcType=INTEGER}
- </if>
- <if test="customerStatus != null">
- and a.customer_status = #{customerStatus,jdbcType=INTEGER}
- </if>
- <if test="adminName != null and adminName != ''">
- and d.name = #{adminName,jdbcType=VARCHAR}
- </if>
- <if test="startDate != null and startDate != ''">
- and a.create_time > STR_TO_DATE(#{startDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="endDate != null and endDate != ''">
- and a.create_time < STR_TO_DATE(#{endDate},'%Y-%m-%d %H:%i:%s')
- </if>
- order by a.create_time desc
- <if test="page_sql != null">
- ${page_sql}
- </if>
- </select>
-
- <select id="selectBusinessManageCount" parameterType="com.goafanti.customer.bo.BusinessListBo" resultType="java.lang.Integer">
- select
- count(0)
- from
- user_business a inner join user b on
- a.uid = b.id left join business_glossory c on
- a.business_glossory_id = c.id left join admin d on
- a.aid = d.id
- LEFT JOIN department_management dm on dm.id = d.department_id
- where 1 = 1
- <if test="aid != null and aid != ''">
- and (b.aid = #{aid,jdbcType=VARCHAR} or d.department_id=(select department_id from admin where id=#{aid,jdbcType=VARCHAR}))
- </if>
- <if test="uid != null and uid !=''">
- and a.uid = #{uid,jdbcType=VARCHAR}
- </if>
- <if test="businessGlossoryId !=null and businessGlossoryId != ''">
- and a.business_glossory_id = #{businessGlossoryId,jdbcType=VARCHAR}
- </if>
- <if test="identifyName != null and identifyName != ''">
- and b.identify_name like concat('%', #{identifyName},'%')
- </if>
- <if test="followSituation != null">
- and a.follow_situation = #{followSituation,jdbcType=INTEGER}
- </if>
- <if test="customerStatus != null">
- and a.customer_status = #{customerStatus,jdbcType=INTEGER}
- </if>
- <if test="adminName != null and adminName != ''">
- and d.name = #{adminName,jdbcType=VARCHAR}
- </if>
- <if test="startDate != null and startDate != ''">
- and a.create_time > STR_TO_DATE(#{startDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="endDate != null and endDate != ''">
- and a.create_time < STR_TO_DATE(#{endDate},'%Y-%m-%d %H:%i:%s')
- </if>
- </select>
-
- <select id="selectManagePersonalCustomerList" resultType="com.goafanti.customer.bo.CustomerListOut">
- select
- a.id as uid,
- a.type,
- a.status,
- date_format(a.create_time,'%Y-%m-%d %H:%i:%s') as createTime,
- a.business_audit as businessAudit,
- a.current_member_status as currentMemberStatus,
- a.identify_name as name,
- a.lvl,a.is_member as isMember,
- a.society_tag as societyTag,
- a.share_type as shareType,
- b.contacts,
- b.contact_mobile as contactMobile,
- b.international,
- b.expert,
- b.audit_status as auditStatus,
- dg1.name as province,
- dg2.name as city,
- dg3.name as area,
- c.name as industry,
- d.name as adminName,
- b.expert_audit as expertAudit,
- b.release_status as releaseStatus
- from user a inner join user_identity b on a.id = b.uid
- left join district_glossory dg1 on b.province = dg1.id
- left join district_glossory dg2 on b.city = dg2.id
- left join district_glossory dg3 on b.area = dg3.id
- left join industry_category c on b.industry = c.id
- left join admin d on a.aid = d.id
- LEFT JOIN department_management dm on dm.id = d.department_id
- where a.type = 0 and a.status != 1 and a.audit_status = 1
- and a.share_type =0
- <if test="aid != null and aid !=''">
- and (a.aid = #{aid,jdbcType=VARCHAR} or d.department_id=(select department_id from admin where id=#{aid,jdbcType=VARCHAR}))
- </if>
- <if test="name != null and name != ''">
- and a.identify_name like concat('%',#{name},'%')
- </if>
- <if test="shareType != null">
- and a.share_type = #{shareType,jdbcType=INTEGER}
- </if>
- <if test="status != null">
- and a.status = #{status,jdbcType=INTEGER}
- </if>
- <if test="businessAudit != null">
- and a.business_audit = #{businessAudit,jdbcType=INTEGER}
- </if>
- <if test="isMember != null">
- and a.is_member = #{isMember,jdbcType=INTEGER}
- </if>
- <if test="lvl != null">
- and a.lvl = #{lvl,jdbcType=INTEGER}
- </if>
- <if test="currentMemberStatus != null">
- and a.current_member_status = #{currentMemberStatus,jdbcType=INTEGER}
- </if>
- <if test="societyTag != null and societyTag != ''">
- and a.society_tag = #{societyTag,jdbcType=VARCHAR}
- </if>
- <if test="startDate != null and startDate != ''">
- and a.create_time > STR_TO_DATE(#{startDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="endDate != null and endDate != ''">
- and a.create_time < STR_TO_DATE(#{endDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="province != null">
- and b.province = #{province,jdbcType=INTEGER}
- </if>
- <if test="city != null">
- and b.city = #{city,jdbcType=INTEGER}
- </if>
- <if test="area != null">
- and b.area = #{area,jdbcType=INTEGER}
- </if>
- <if test="industry != null">
- and b.industry = #{industry,jdbcType=INTEGER}
- </if>
- <if test="expert != null">
- and b.expert = #{expert,jdbcType=INTEGER}
- </if>
- <if test="international != null">
- and b.international = #{international,jdbcType=INTEGER}
- </if>
- <if test="auditStatus != null">
- and b.audit_status = #{auditStatus,jdbcType=INTEGER}
- </if>
- <if test="page_sql != null">
- ${page_sql}
- </if>
- </select>
- <select id="selectManagePersonalCustomerCount" resultType="java.lang.Integer">
- select count(0)
- from user a inner join user_identity b on a.id = b.uid
- left join admin d on a.aid = d.id
- LEFT JOIN department_management dm on dm.id = d.department_id
- where a.type = 0 and a.status != 1 and a.audit_status = 1
- <if test="aid != null and aid !=''">
- and (a.aid = #{aid,jdbcType=VARCHAR} or d.department_id=(select department_id from admin where id=#{aid,jdbcType=VARCHAR}))
- </if>
- <if test="name != null and name != ''">
- and a.identify_name like concat('%',#{name},'%')
- </if>
- <if test="shareType != null">
- and a.share_type = #{shareType,jdbcType=VARCHAR}
- </if>
- <if test="status != null">
- and a.status = #{status,jdbcType=INTEGER}
- </if>
- <if test="businessAudit != null">
- and a.business_audit = #{businessAudit,jdbcType=INTEGER}
- </if>
- <if test="isMember != null">
- and a.is_member = #{isMember,jdbcType=INTEGER}
- </if>
- <if test="lvl != null">
- and a.lvl = #{lvl,jdbcType=INTEGER}
- </if>
- <if test="currentMemberStatus != null">
- and a.current_member_status = #{currentMemberStatus,jdbcType=INTEGER}
- </if>
- <if test="societyTag != null and societyTag != ''">
- and a.society_tag = #{societyTag,jdbcType=VARCHAR}
- </if>
- <if test="startDate != null and startDate != ''">
- and a.create_time > STR_TO_DATE(#{startDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="endDate != null and endDate != ''">
- and a.create_time < STR_TO_DATE(#{endDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="province != null">
- and b.province = #{province,jdbcType=INTEGER}
- </if>
- <if test="city != null">
- and b.city = #{city,jdbcType=INTEGER}
- </if>
- <if test="area != null">
- and b.area = #{area,jdbcType=INTEGER}
- </if>
- <if test="industry != null">
- and b.industry = #{industry,jdbcType=INTEGER}
- </if>
- <if test="expert != null">
- and b.expert = #{expert,jdbcType=INTEGER}
- </if>
- <if test="international != null">
- and b.international = #{international,jdbcType=INTEGER}
- </if>
- <if test="auditStatus != null">
- and b.audit_status = #{auditStatus,jdbcType=INTEGER}
- </if>
- </select>
-
- <select id="selectManageOrganizationCustomerList" resultType="com.goafanti.customer.bo.CustomerListOut">
- select
- a.id as uid,
- a.type,
- a.status,
- date_format(a.create_time,'%Y-%m-%d %H:%i:%s') as createTime,
- a.business_audit as businessAudit,
- a.current_member_status as currentMemberStatus,
- a.identify_name as name,
- a.lvl,
- a.is_member as isMember,
- a.society_tag as societyTag,
- share_type as shareType,
- b.contacts,
- b.contact_mobile as contactMobile,
- b.international,
- b.listed,
- b.high_tech_zone as highTechZone,
- b.audit_status as auditStatus,
- dg1.name as province,
- dg2.name as city,
- dg3.name as area,
- c.name as industry,
- d.name as adminName
- from user a inner join organization_identity b on a.id = b.uid
- left join district_glossory dg1 on b.location_province = dg1.id
- left join district_glossory dg2 on b.location_city = dg2.id
- left join district_glossory dg3 on b.location_area = dg3.id
- left join industry_category c on b.industry = c.id
- left join admin d on a.aid = d.id
- LEFT JOIN department_management dm on dm.id = d.department_id
- where a.type = 1 and a.status != 1 and a.audit_status = 1
- <if test="aid != null and aid !=''">
- and (a.aid = #{aid,jdbcType=VARCHAR} or d.department_id=(select department_id from admin where id=#{aid,jdbcType=VARCHAR}))
- </if>
- <if test="name != null and name != ''">
- and a.identify_name like concat('%',#{name},'%')
- </if>
- <if test="shareType != null">
- and a.share_type = #{shareType,jdbcType=VARCHAR}
- </if>
- <if test="status != null">
- and a.status = #{status,jdbcType=INTEGER}
- </if>
- <if test="businessAudit != null">
- and a.business_audit = #{businessAudit,jdbcType=INTEGER}
- </if>
- <if test="isMember != null">
- and a.is_member = #{isMember,jdbcType=INTEGER}
- </if>
- <if test="currentMemberStatus != null">
- and a.current_member_status = #{currentMemberStatus,jdbcType=INTEGER}
- </if>
- <if test="lvl != null">
- and a.lvl = #{lvl,jdbcType=INTEGER}
- </if>
- <if test="societyTag != null and societyTag != ''">
- and a.society_tag = #{societyTag,jdbcType=VARCHAR}
- </if>
- <if test="startDate != null and startDate != ''">
- and a.create_time > STR_TO_DATE(#{startDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="endDate != null and endDate != ''">
- and a.create_time < STR_TO_DATE(#{endDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="province != null">
- and b.location_province = #{province,jdbcType=INTEGER}
- </if>
- <if test="city != null">
- and b.location_city = #{city,jdbcType=INTEGER}
- </if>
- <if test="area != null">
- and b.location_area = #{area,jdbcType=INTEGER}
- </if>
- <if test="industry != null">
- and b.industry = #{industry,jdbcType=INTEGER}
- </if>
- <if test="listed != null">
- and b.listed = #{listed,jdbcType=INTEGER}
- </if>
- <if test="highTechZone != null">
- and b.high_tech_zone = #{highTechZone,jdbcType=INTEGER}
- </if>
- <if test="international != null">
- and b.international = #{international,jdbcType=INTEGER}
- </if>
- <if test="auditStatus != null">
- and b.audit_status = #{auditStatus,jdbcType=INTEGER}
- </if>
- <if test="page_sql != null">
- ${page_sql}
- </if>
- </select>
-
- <select id="selectManageOrganizationCustomerCount" resultType="java.lang.Integer">
- select
- count(0)
- from user a inner join organization_identity b on a.id = b.uid
- left join admin d on a.aid = d.id
- LEFT JOIN department_management dm on dm.id = d.department_id
- where a.type = 1 and a.status != 1 and a.audit_status = 1
- <if test="aid != null and aid !=''">
- and (a.aid = #{aid,jdbcType=VARCHAR} or d.department_id=(select department_id from admin where id=#{aid,jdbcType=VARCHAR}))
- </if>
- <if test="name != null and name != ''">
- and a.identify_name like concat('%',#{name},'%')
- </if>
- <if test="shareType != null">
- and a.share_type = #{shareType,jdbcType=VARCHAR}
- </if>
- <if test="status != null">
- and a.status = #{status,jdbcType=INTEGER}
- </if>
- <if test="businessAudit != null">
- and a.business_audit = #{businessAudit,jdbcType=INTEGER}
- </if>
- <if test="currentMemberStatus != null">
- and a.current_member_status = #{currentMemberStatus,jdbcType=INTEGER}
- </if>
- <if test="isMember != null">
- and a.is_member = #{isMember,jdbcType=INTEGER}
- </if>
- <if test="societyTag != null and societyTag != ''">
- and a.society_tag = #{societyTag,jdbcType=VARCHAR}
- </if>
- <if test="startDate != null and startDate != ''">
- and a.create_time > STR_TO_DATE(#{startDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="endDate != null and endDate != ''">
- and a.create_time < STR_TO_DATE(#{endDate},'%Y-%m-%d %H:%i:%s')
- </if>
- <if test="province != null">
- and b.location_province = #{province,jdbcType=INTEGER}
- </if>
- <if test="city != null">
- and b.location_city = #{city,jdbcType=INTEGER}
- </if>
- <if test="area != null">
- and b.location_area = #{area,jdbcType=INTEGER}
- </if>
- <if test="industry != null">
- and b.industry = #{industry,jdbcType=INTEGER}
- </if>
- <if test="listed != null">
- and b.listed = #{listed,jdbcType=INTEGER}
- </if>
- <if test="highTechZone != null">
- and b.high_tech_zone = #{highTechZone,jdbcType=INTEGER}
- </if>
- <if test="international != null">
- and b.international = #{international,jdbcType=INTEGER}
- </if>
- <if test="auditStatus != null">
- and b.audit_status = #{auditStatus,jdbcType=INTEGER}
- </if>
- </select>
-
- <select id="findAdminName" resultType="com.goafanti.customer.bo.CustomerListOut">
- select d.name as adminName,d.id as aid
- from admin d left join department_management dm on dm.id = d.department_id
- where d.department_id=(select department_id from admin where id=#{aid,jdbcType=INTEGER})
- </select>
-
- <select id="findEnteringAuditList" resultType="com.goafanti.customer.bo.CustomerListOut">
- select u.id as uid,u.nickname as name,u.mobile as contactMobile,a.name as adminName,u.create_time as createTime,u.audit_status as auditStatus
- from user u left join admin a on u.aid=a.id
- where u.audit_status=0 and u.status != 1 and u.share_type=0
- <if test="aid != null and aid !=''">
- and u.aid = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="name != null and name != ''">
- and u.nickname = #{name,jdbcType=VARCHAR}
- </if>
- <if test="adminName != null and adminName != ''">
- and a.name = #{adminName,jdbcType=VARCHAR}
- </if>
- <if test="page_sql != null">
- ${page_sql}
- </if>
- </select>
-
- <select id="findEnteringAuditCount" resultType="java.lang.Integer">
- select
- count(0)
- from user u left join admin a on u.aid=a.id
- where u.audit_status=0 and u.status != 1 and u.share_type=0
- <if test="aid != null and aid !=''">
- and u.aid = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="name != null and name != ''">
- and u.nickname = #{name,jdbcType=VARCHAR}
- </if>
- <if test="adminName != null and adminName != ''">
- and a.name = #{adminName,jdbcType=VARCHAR}
- </if>
- </select>
-
- <select id="findEnteringAuditIsNoList" resultType="com.goafanti.customer.bo.CustomerListOut">
- select u.id as uid,u.nickname as name,u.mobile as contactMobile,a.name as adminName,u.create_time as createTime,
- u.audit_status as auditStatus,u.audit_opinion as auditOpinion,u.society_tag as societyTag
- from user u left join admin a on u.aid=a.id
- where u.audit_status=2 and u.status != 1
- <if test="aid != null and aid !=''">
- and u.aid = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="name != null and name != ''">
- and u.nickname = #{name,jdbcType=VARCHAR}
- </if>
- <if test="adminName != null and adminName != ''">
- and a.name = #{adminName,jdbcType=VARCHAR}
- </if>
- <if test="page_sql != null">
- ${page_sql}
- </if>
- </select>
-
- <select id="findEnteringAuditIsNoCount" resultType="java.lang.Integer">
- select
- count(0)
- from user u left join admin a on u.aid=a.id
- where u.audit_status=2 and u.status != 1
- <if test="aid != null and aid !=''">
- and u.aid = #{aid,jdbcType=VARCHAR}
- </if>
- <if test="name != null and name != ''">
- and u.nickname = #{name,jdbcType=VARCHAR}
- </if>
- <if test="adminName != null and adminName != ''">
- and a.name = #{adminName,jdbcType=VARCHAR}
- </if>
- </select>
-
- <update id="updateRefusedCustomer" parameterType="map">
- update user
- set
- nickname = #{nickname,jdbcType=VARCHAR},
- mobile = #{mobile,jdbcType=VARCHAR},
- society_tag = #{societyTag,jdbcType=VARCHAR},
- audit_status=0
- where id = #{id,jdbcType=VARCHAR}
- </update>
- </mapper>
|