CompanyCQuery.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.hz.employmentsite.mapper.cquery.CompanyCQuery">
  4. <select id="getList" resultType="com.hz.employmentsite.vo.companyService.CompanyVo">
  5. select company.*,city.name as regionName,area.name as streetName,sparea.name as
  6. signInPoliticalAreaName,sys_cmodel.Name as companyModelType,
  7. postCountData.postCount,u.`Name` as createUserName
  8. ,inSites.InstitutionID as institutionID,site.SiteName,com_status.Name as recordStatusName,
  9. industry.industryName as industryName,industry.industryName as showIndustryName,
  10. com_estate.Name as estateCategoryName,com_type.Name as companyTypeName,com_reType.Name as RegisteredCapitalTypeName,
  11. com_tag.Name as tagName,com_short.Name as isShortageName,modifyUser.Name as modifyUserName
  12. from pc_company company
  13. left join sys_user u on u.UserID = company.CreateUserID
  14. left join (select * from sys_dictionary_item where DictionaryCode ='CompanyModel') sys_cmodel on
  15. company.CompanyModel = sys_cmodel.Value
  16. left join (select * from sys_dictionary_item where DictionaryCode ='CompanyType') com_type on
  17. company.CompanyType = com_type.Value
  18. left join (select * from sys_dictionary_item where DictionaryCode ='CompanyStatus') com_status on
  19. company.RecordStatus = com_status.Value
  20. left join (select * from sys_dictionary_item where DictionaryCode ='CompanyEstateCategory') com_estate on
  21. company.EstateCategoryID = com_estate.Value
  22. left join (select * from sys_dictionary_item where DictionaryCode ='CompanyTag') com_tag on
  23. company.TagID = com_tag.Value
  24. left join (select * from sys_dictionary_item where DictionaryCode ='IsShortAge') com_short on
  25. company.IsShortage = com_short.Value
  26. left join (select * from sys_dictionary_item where DictionaryCode ='RegisteredCapitalType') com_reType on
  27. company.RegisteredCapitalType = com_reType.Value
  28. left join pc_industry industry on company.IndustryID = industry.industryId
  29. left join area_code city on company.RegionCode = city.code
  30. left join area_code area on company.StreetCode = area.code
  31. left join area_code sparea on company.SignInPoliticalArea = sparea.code
  32. left join pc_site site on company.siteID = site.siteID
  33. left join pc_site_institution inSites on site.SiteID = inSites.SiteID
  34. left join pc_institution institution on inSites.institutionID = institution.InstitutionID
  35. left join sys_user modifyUser on company.ModifyUserID = modifyUser.UserID
  36. left join (select CompanyID, count(1) as postCount from pc_post group by CompanyID) postCountData on postCountData.CompanyID = company.CompanyID
  37. where 1=1
  38. <if test="companyIDList!='' and companyIDList!=null">
  39. and company.companyID in (${companyIDList})
  40. </if>
  41. <if test="companyName!='' and companyName!=null">
  42. and company.companyName like Concat('%',#{companyName},'%')
  43. </if>
  44. <if test="companyCode!='' and companyCode!=null">
  45. and company.companyCode like Concat('%',#{companyCode},'%')
  46. </if>
  47. <if test="recordStatus!='' and recordStatus!=null">
  48. and company.RecordStatus = #{recordStatus}
  49. </if>
  50. <if test="regionCode!='' and regionCode!=null">
  51. and company.regionCode like Concat('%',#{regionCode},'%')
  52. </if>
  53. <if test="streetCode!='' and regionCode!=null">
  54. and company.streetCode like Concat('%',#{streetCode},'%')
  55. </if>
  56. <if test="createUserId!='' and createUserId!=null">
  57. and company.CreateUserID = #{createUserId}
  58. </if>
  59. <if test="companyTypeID != '' and companyTypeID != null">
  60. and company.CompanyType = #{companyTypeID}
  61. </if>
  62. <if test="industryID != '' and industryID != null">
  63. and company.IndustryID = #{industryID}
  64. </if>
  65. <if test="workTime!='' and workTime!=null">
  66. and Date(company.CreateTime) = Date(#{workTime})
  67. </if>
  68. <if test="curLoginUserSiteID!='' and curLoginUserSiteID!=null">
  69. and company.siteID = #{curLoginUserSiteID}
  70. </if>
  71. <if test="siteID!='' and siteID!=null">
  72. and company.siteID = #{siteID}
  73. </if>
  74. <if test="startDate != null and endDate == null">
  75. and Date(company.CreateTime) <![CDATA[ >= ]]> Date(#{startDate})
  76. </if>
  77. <if test="endDate != null and startDate == null">
  78. and Date(company.CreateTime) <![CDATA[ <= ]]> Date(#{endDate})
  79. </if>
  80. <if test="startDate != null and endDate != null">
  81. and Date(company.CreateTime) <![CDATA[ >= ]]> Date(#{startDate})
  82. and Date(company.CreateTime) <![CDATA[ <= ]]> Date(#{endDate})
  83. </if>
  84. <if test="isAllCompany != null and isAllCompany == true ">
  85. or company.companyID = 'AllCompany'
  86. </if>
  87. <if test="createUserName!='' and createUserName!=null">
  88. and u.`Name` like Concat('%',#{createUserName},'%')
  89. </if>
  90. <if test="dataSource != null and dataSource != '' and dataSource == 1">
  91. and company.OracleTableID is null
  92. </if>
  93. <if test="dataSource != null and dataSource != '' and dataSource == 2">
  94. and company.OracleTableID is not null
  95. </if>
  96. order by
  97. <if test="postCountSorter == null or postCountSorter == ''">
  98. company.CreateTime desc,
  99. postCount desc
  100. </if>
  101. <if test="postCountSorter != null and postCountSorter == 'ascend'">
  102. postCount,
  103. company.CreateTime desc
  104. </if>
  105. <if test="postCountSorter != null and postCountSorter == 'descend'">
  106. postCount desc,
  107. company.CreateTime desc
  108. </if>
  109. </select>
  110. <select id="getAllList" resultType="com.hz.employmentsite.vo.companyService.AllCompanyVo">
  111. select company.*
  112. from pc_company company
  113. </select>
  114. <select id="getFirmNameLikeList" resultType="com.hz.employmentsite.model.PcFirm">
  115. select id,FirmName
  116. from pc_firm
  117. <where>
  118. <choose>
  119. <when test="firmName!=null and firmName!=''">
  120. and FirmName like Concat('%',#{firmName},'%')
  121. </when>
  122. <otherwise>
  123. and 1!=1
  124. </otherwise>
  125. </choose>
  126. </where>
  127. LIMIT 30
  128. </select>
  129. <select id="getDataMapList" resultType="com.hz.employmentsite.vo.dataMap.CompanyPostMapVo">
  130. SELECT
  131. company.CompanyID,
  132. company_user.`Name` as companyCreateUserName,
  133. company.CompanyName,
  134. company.CompanyAddress,
  135. cmodel.`Name` AS companyModelType,
  136. com_status.`Name` AS recordStatusName,
  137. company.Longitude,
  138. company.Latitude,
  139. company.UserName,
  140. company.UserMobile,
  141. (
  142. 6371 * ACOS(
  143. COS(
  144. RADIANS( #{latitude} )) * COS(
  145. RADIANS( company.Latitude )) * COS(
  146. RADIANS( company.Longitude ) - RADIANS( #{longitude} )) + SIN(
  147. RADIANS( #{latitude} )) * SIN(
  148. RADIANS( company.Latitude ))
  149. )) AS distance,
  150. postCounts.postCount,
  151. creditRecordCounts.creditRecordCount,
  152. industry.industryName,
  153. site.siteName,
  154. signinCounts.signinCount
  155. FROM
  156. pc_company company
  157. LEFT JOIN sys_dictionary_item cmodel ON company.CompanyModel = cmodel.`Value`
  158. AND cmodel.DictionaryCode = 'CompanyModel'
  159. LEFT JOIN sys_dictionary_item com_status ON company.RecordStatus = com_status.`Value`
  160. AND com_status.DictionaryCode = 'CompanyStatus'
  161. LEFT JOIN sys_user company_user ON company.CreateUserID = company_user.UserID
  162. LEFT JOIN ( SELECT CompanyID, COUNT( 1 ) AS postCount FROM pc_post GROUP BY CompanyID ) AS postCounts ON company.CompanyID = postCounts.CompanyID
  163. LEFT JOIN ( SELECT CompanyID, COUNT(1) AS creditRecordCount FROM pc_credit_record GROUP BY CompanyID) AS creditRecordCounts ON company.CompanyID = creditRecordCounts.CompanyID
  164. LEFT JOIN ( SELECT CompanyID, COUNT( 1 ) AS signinCount FROM pc_signin GROUP BY CompanyID ) AS signinCounts ON company.CompanyID = signinCounts.CompanyID
  165. LEFT JOIN pc_industry industry ON company.IndustryID = industry.industryId
  166. LEFT JOIN pc_site site ON company.siteID = site.siteID
  167. WHERE 1=1
  168. <if test="companyName!='' and companyName!=null">
  169. and company.companyName like Concat('%',#{companyName},'%')
  170. </if>
  171. <if test="companyModel!=null">
  172. and company.companyModel = #{companyModel}
  173. </if>
  174. <if test="recordStatus!=null">
  175. and company.recordStatus = #{recordStatus}
  176. </if>
  177. <if test="regionCode!='' and regionCode!=null">
  178. and company.regionCode = #{regionCode}
  179. </if>
  180. <if test="siteID!='' and siteID!=null">
  181. and company.siteID = #{siteID}
  182. </if>
  183. <if test="createTimeBy!='' and createTimeBy!=null">
  184. and Date(company.CreateTime) <![CDATA[ >= ]]> Date(#{createTimeBy})
  185. </if>
  186. <if test="isPost != null and isPost == 1">
  187. and postCounts.postCount >= 0
  188. </if>
  189. <if test="isPost != null and isPost == 0">
  190. and postCounts.postCount IS NULL
  191. </if>
  192. <if test="maxDistance!=null">
  193. HAVING
  194. distance <![CDATA[ <= ]]> #{maxDistance}
  195. </if>
  196. ORDER BY
  197. (postCounts.postCount IS NULL) ASC,
  198. company.CreateTime DESC
  199. </select>
  200. <select id="getDataMapListByPostName" resultType="com.hz.employmentsite.vo.dataMap.CompanyPostMapVo">
  201. SELECT
  202. post.PostID,
  203. post_user.`Name` as postCreateUserName,
  204. prof.ProfessionName,
  205. post.MinSalary,
  206. post.MaxSalary,
  207. post.RecruitCount,
  208. post.ContactName,
  209. post.ContactMobile,
  210. post_culture.`Name` AS cultureLevelName,
  211. post.StartTime,
  212. post.EndTime,
  213. post.welfare,
  214. post.postDesc,
  215. company.CompanyID,
  216. company_user.`Name` as companyCreateUserName,
  217. company.CompanyName,
  218. company.CompanyAddress,
  219. cmodel.`Name` AS companyModelType,
  220. com_status.`Name` AS recordStatusName,
  221. company.Longitude,
  222. company.Latitude,
  223. (
  224. 6371 * ACOS(
  225. COS(
  226. RADIANS( #{latitude} )) * COS(
  227. RADIANS( company.Latitude )) * COS(
  228. RADIANS( company.Longitude ) - RADIANS( #{longitude} )) + SIN(
  229. RADIANS( #{latitude} )) * SIN(
  230. RADIANS( company.Latitude ))
  231. )) AS distance
  232. FROM
  233. pc_post post
  234. LEFT JOIN pc_profession prof ON post.ProfessionID = prof.ProfessionID
  235. LEFT JOIN pc_company company ON post.CompanyID = company.CompanyID
  236. LEFT JOIN sys_dictionary_item cmodel ON company.CompanyModel = cmodel.`Value`
  237. AND cmodel.DictionaryCode = 'CompanyModel'
  238. LEFT JOIN sys_dictionary_item com_status ON company.RecordStatus = com_status.`Value`
  239. AND com_status.DictionaryCode = 'CompanyStatus'
  240. LEFT JOIN sys_dictionary_item post_culture ON post.CultureRank = post_culture.`Value`
  241. AND post_culture.DictionaryCode = 'CultureLevel'
  242. LEFT JOIN sys_user company_user ON company.CreateUserID = company_user.UserID
  243. LEFT JOIN sys_user post_user ON post.CreateUserID = post_user.UserID
  244. WHERE 1=1
  245. <if test="postName!='' and postName!=null">
  246. and prof.ProfessionName like Concat('%',#{postName},'%')
  247. </if>
  248. <if test="companyModel!=null">
  249. and company.companyModel = #{companyModel}
  250. </if>
  251. <if test="recordStatus!=null">
  252. and company.recordStatus = #{recordStatus}
  253. </if>
  254. <if test="regionCode!='' and regionCode!=null">
  255. and company.regionCode = #{regionCode}
  256. </if>
  257. <if test="siteID!='' and siteID!=null">
  258. and company.siteID = #{siteID}
  259. </if>
  260. <if test="createTimeBy!='' and createTimeBy!=null">
  261. and Date(post.CreateTime) <![CDATA[ >= ]]> Date(#{createTimeBy})
  262. </if>
  263. <if test="maxDistance!=null">
  264. HAVING
  265. distance <![CDATA[ <= ]]> #{maxDistance}
  266. </if>
  267. ORDER BY
  268. post.CreateTime DESC, distance DESC, CompanyID
  269. </select>
  270. <select id="getCompanySigninList" resultType="com.hz.employmentsite.vo.signin.SigninVo">
  271. SELECT
  272. signinTime,
  273. site.SiteName,
  274. createUser.`Name` AS signinUserName
  275. FROM
  276. `pc_signin` signin
  277. LEFT JOIN pc_site site ON signin.SiteID = site.SiteID
  278. LEFT JOIN sys_user createUser ON signin.CreateUserID = createUser.UserID
  279. WHERE
  280. signin.CompanyID = #{companyID}
  281. ORDER BY
  282. signin.SigninTime DESC
  283. </select>
  284. </mapper>