123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- <?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.hz.employmentsite.mapper.cquery.CompanyCQuery">
- <select id="getList" resultType="com.hz.employmentsite.vo.companyService.CompanyVo">
- select company.*,city.name as regionName,area.name as streetName,sparea.name as
- signInPoliticalAreaName,sys_cmodel.Name as companyModelType,
- postCountData.postCount,u.`Name` as createUserName
- ,inSites.InstitutionID as institutionID,site.SiteName,com_status.Name as recordStatusName,
- industry.industryName as industryName,industry.industryName as showIndustryName,
- com_estate.Name as estateCategoryName,com_type.Name as companyTypeName,com_reType.Name as RegisteredCapitalTypeName,
- com_tag.Name as tagName,com_short.Name as isShortageName,modifyUser.Name as modifyUserName
- from pc_company company
- left join sys_user u on u.UserID = company.CreateUserID
- left join (select * from sys_dictionary_item where DictionaryCode ='CompanyModel') sys_cmodel on
- company.CompanyModel = sys_cmodel.Value
- left join (select * from sys_dictionary_item where DictionaryCode ='CompanyType') com_type on
- company.CompanyType = com_type.Value
- left join (select * from sys_dictionary_item where DictionaryCode ='CompanyStatus') com_status on
- company.RecordStatus = com_status.Value
- left join (select * from sys_dictionary_item where DictionaryCode ='CompanyEstateCategory') com_estate on
- company.EstateCategoryID = com_estate.Value
- left join (select * from sys_dictionary_item where DictionaryCode ='CompanyTag') com_tag on
- company.TagID = com_tag.Value
- left join (select * from sys_dictionary_item where DictionaryCode ='IsShortAge') com_short on
- company.IsShortage = com_short.Value
- left join (select * from sys_dictionary_item where DictionaryCode ='RegisteredCapitalType') com_reType on
- company.RegisteredCapitalType = com_reType.Value
- left join pc_industry industry on company.IndustryID = industry.industryId
- left join area_code city on company.RegionCode = city.code
- left join area_code area on company.StreetCode = area.code
- left join area_code sparea on company.SignInPoliticalArea = sparea.code
- left join pc_site site on company.siteID = site.siteID
- left join pc_site_institution inSites on site.SiteID = inSites.SiteID
- left join pc_institution institution on inSites.institutionID = institution.InstitutionID
- left join sys_user modifyUser on company.ModifyUserID = modifyUser.UserID
- left join (select CompanyID, count(1) as postCount from pc_post group by CompanyID) postCountData on postCountData.CompanyID = company.CompanyID
- where 1=1
- <if test="companyIDList!='' and companyIDList!=null">
- and company.companyID in (${companyIDList})
- </if>
- <if test="companyName!='' and companyName!=null">
- and company.companyName like Concat('%',#{companyName},'%')
- </if>
- <if test="companyCode!='' and companyCode!=null">
- and company.companyCode like Concat('%',#{companyCode},'%')
- </if>
- <if test="recordStatus!='' and recordStatus!=null">
- and company.RecordStatus = #{recordStatus}
- </if>
- <if test="regionCode!='' and regionCode!=null">
- and company.regionCode like Concat('%',#{regionCode},'%')
- </if>
- <if test="streetCode!='' and regionCode!=null">
- and company.streetCode like Concat('%',#{streetCode},'%')
- </if>
- <if test="createUserId!='' and createUserId!=null">
- and company.CreateUserID = #{createUserId}
- </if>
- <if test="companyTypeID != '' and companyTypeID != null">
- and company.CompanyType = #{companyTypeID}
- </if>
- <if test="industryID != '' and industryID != null">
- and company.IndustryID = #{industryID}
- </if>
- <if test="workTime!='' and workTime!=null">
- and Date(company.CreateTime) = Date(#{workTime})
- </if>
- <if test="curLoginUserSiteID!='' and curLoginUserSiteID!=null">
- and company.siteID = #{curLoginUserSiteID}
- </if>
- <if test="siteID!='' and siteID!=null">
- and company.siteID = #{siteID}
- </if>
- <if test="startDate != null and endDate == null">
- and Date(company.CreateTime) <![CDATA[ >= ]]> Date(#{startDate})
- </if>
- <if test="endDate != null and startDate == null">
- and Date(company.CreateTime) <![CDATA[ <= ]]> Date(#{endDate})
- </if>
- <if test="startDate != null and endDate != null">
- and Date(company.CreateTime) <![CDATA[ >= ]]> Date(#{startDate})
- and Date(company.CreateTime) <![CDATA[ <= ]]> Date(#{endDate})
- </if>
- <if test="isAllCompany != null and isAllCompany == true ">
- or company.companyID = 'AllCompany'
- </if>
- <if test="createUserName!='' and createUserName!=null">
- and u.`Name` like Concat('%',#{createUserName},'%')
- </if>
- <if test="dataSource != null and dataSource != '' and dataSource == 1">
- and company.OracleTableID is null
- </if>
- <if test="dataSource != null and dataSource != '' and dataSource == 2">
- and company.OracleTableID is not null
- </if>
- order by
- <if test="postCountSorter == null or postCountSorter == ''">
- company.CreateTime desc,
- postCount desc
- </if>
- <if test="postCountSorter != null and postCountSorter == 'ascend'">
- postCount,
- company.CreateTime desc
- </if>
- <if test="postCountSorter != null and postCountSorter == 'descend'">
- postCount desc,
- company.CreateTime desc
- </if>
- </select>
- <select id="getAllList" resultType="com.hz.employmentsite.vo.companyService.AllCompanyVo">
- select company.*
- from pc_company company
- </select>
- <select id="getFirmNameLikeList" resultType="com.hz.employmentsite.model.PcFirm">
- select id,FirmName
- from pc_firm
- <where>
- <choose>
- <when test="firmName!=null and firmName!=''">
- and FirmName like Concat('%',#{firmName},'%')
- </when>
- <otherwise>
- and 1!=1
- </otherwise>
- </choose>
- </where>
- LIMIT 30
- </select>
- <select id="getDataMapList" resultType="com.hz.employmentsite.vo.dataMap.CompanyPostMapVo">
- SELECT
- company.CompanyID,
- company_user.`Name` as companyCreateUserName,
- company.CompanyName,
- company.CompanyAddress,
- cmodel.`Name` AS companyModelType,
- com_status.`Name` AS recordStatusName,
- company.Longitude,
- company.Latitude,
- company.UserName,
- company.UserMobile,
- (
- 6371 * ACOS(
- COS(
- RADIANS( #{latitude} )) * COS(
- RADIANS( company.Latitude )) * COS(
- RADIANS( company.Longitude ) - RADIANS( #{longitude} )) + SIN(
- RADIANS( #{latitude} )) * SIN(
- RADIANS( company.Latitude ))
- )) AS distance,
- postCounts.postCount,
- creditRecordCounts.creditRecordCount,
- industry.industryName,
- site.siteName,
- signinCounts.signinCount
- FROM
- pc_company company
- LEFT JOIN sys_dictionary_item cmodel ON company.CompanyModel = cmodel.`Value`
- AND cmodel.DictionaryCode = 'CompanyModel'
- LEFT JOIN sys_dictionary_item com_status ON company.RecordStatus = com_status.`Value`
- AND com_status.DictionaryCode = 'CompanyStatus'
- LEFT JOIN sys_user company_user ON company.CreateUserID = company_user.UserID
- LEFT JOIN ( SELECT CompanyID, COUNT( 1 ) AS postCount FROM pc_post GROUP BY CompanyID ) AS postCounts ON company.CompanyID = postCounts.CompanyID
- LEFT JOIN ( SELECT CompanyID, COUNT(1) AS creditRecordCount FROM pc_credit_record GROUP BY CompanyID) AS creditRecordCounts ON company.CompanyID = creditRecordCounts.CompanyID
- LEFT JOIN ( SELECT CompanyID, COUNT( 1 ) AS signinCount FROM pc_signin GROUP BY CompanyID ) AS signinCounts ON company.CompanyID = signinCounts.CompanyID
- LEFT JOIN pc_industry industry ON company.IndustryID = industry.industryId
- LEFT JOIN pc_site site ON company.siteID = site.siteID
- WHERE 1=1
- <if test="companyName!='' and companyName!=null">
- and company.companyName like Concat('%',#{companyName},'%')
- </if>
- <if test="companyModel!=null">
- and company.companyModel = #{companyModel}
- </if>
- <if test="recordStatus!=null">
- and company.recordStatus = #{recordStatus}
- </if>
- <if test="regionCode!='' and regionCode!=null">
- and company.regionCode = #{regionCode}
- </if>
- <if test="siteID!='' and siteID!=null">
- and company.siteID = #{siteID}
- </if>
- <if test="createTimeBy!='' and createTimeBy!=null">
- and Date(company.CreateTime) <![CDATA[ >= ]]> Date(#{createTimeBy})
- </if>
- <if test="isPost != null and isPost == 1">
- and postCounts.postCount >= 0
- </if>
- <if test="isPost != null and isPost == 0">
- and postCounts.postCount IS NULL
- </if>
- <if test="maxDistance!=null">
- HAVING
- distance <![CDATA[ <= ]]> #{maxDistance}
- </if>
- ORDER BY
- (postCounts.postCount IS NULL) ASC,
- company.CreateTime DESC
- </select>
- <select id="getDataMapListByPostName" resultType="com.hz.employmentsite.vo.dataMap.CompanyPostMapVo">
- SELECT
- post.PostID,
- post_user.`Name` as postCreateUserName,
- prof.ProfessionName,
- post.MinSalary,
- post.MaxSalary,
- post.RecruitCount,
- post.ContactName,
- post.ContactMobile,
- post_culture.`Name` AS cultureLevelName,
- post.StartTime,
- post.EndTime,
- post.welfare,
- post.postDesc,
- company.CompanyID,
- company_user.`Name` as companyCreateUserName,
- company.CompanyName,
- company.CompanyAddress,
- cmodel.`Name` AS companyModelType,
- com_status.`Name` AS recordStatusName,
- company.Longitude,
- company.Latitude,
- (
- 6371 * ACOS(
- COS(
- RADIANS( #{latitude} )) * COS(
- RADIANS( company.Latitude )) * COS(
- RADIANS( company.Longitude ) - RADIANS( #{longitude} )) + SIN(
- RADIANS( #{latitude} )) * SIN(
- RADIANS( company.Latitude ))
- )) AS distance
- FROM
- pc_post post
- LEFT JOIN pc_profession prof ON post.ProfessionID = prof.ProfessionID
- LEFT JOIN pc_company company ON post.CompanyID = company.CompanyID
- LEFT JOIN sys_dictionary_item cmodel ON company.CompanyModel = cmodel.`Value`
- AND cmodel.DictionaryCode = 'CompanyModel'
- LEFT JOIN sys_dictionary_item com_status ON company.RecordStatus = com_status.`Value`
- AND com_status.DictionaryCode = 'CompanyStatus'
- LEFT JOIN sys_dictionary_item post_culture ON post.CultureRank = post_culture.`Value`
- AND post_culture.DictionaryCode = 'CultureLevel'
- LEFT JOIN sys_user company_user ON company.CreateUserID = company_user.UserID
- LEFT JOIN sys_user post_user ON post.CreateUserID = post_user.UserID
- WHERE 1=1
- <if test="postName!='' and postName!=null">
- and prof.ProfessionName like Concat('%',#{postName},'%')
- </if>
- <if test="companyModel!=null">
- and company.companyModel = #{companyModel}
- </if>
- <if test="recordStatus!=null">
- and company.recordStatus = #{recordStatus}
- </if>
- <if test="regionCode!='' and regionCode!=null">
- and company.regionCode = #{regionCode}
- </if>
- <if test="siteID!='' and siteID!=null">
- and company.siteID = #{siteID}
- </if>
- <if test="createTimeBy!='' and createTimeBy!=null">
- and Date(post.CreateTime) <![CDATA[ >= ]]> Date(#{createTimeBy})
- </if>
- <if test="maxDistance!=null">
- HAVING
- distance <![CDATA[ <= ]]> #{maxDistance}
- </if>
- ORDER BY
- post.CreateTime DESC, distance DESC, CompanyID
- </select>
- <select id="getCompanySigninList" resultType="com.hz.employmentsite.vo.signin.SigninVo">
- SELECT
- signinTime,
- site.SiteName,
- createUser.`Name` AS signinUserName
- FROM
- `pc_signin` signin
- LEFT JOIN pc_site site ON signin.SiteID = site.SiteID
- LEFT JOIN sys_user createUser ON signin.CreateUserID = createUser.UserID
- WHERE
- signin.CompanyID = #{companyID}
- ORDER BY
- signin.SigninTime DESC
- </select>
- </mapper>
|