AchievementMapper.xml 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668
  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.goafanti.common.dao.AchievementMapper">
  4. <resultMap id="BaseResultMap" type="com.goafanti.common.model.Achievement">
  5. <id column="id" jdbcType="VARCHAR" property="id" />
  6. <result column="serial_number" jdbcType="INTEGER" property="serialNumber" />
  7. <result column="data_category" jdbcType="INTEGER" property="dataCategory" />
  8. <result column="name" jdbcType="VARCHAR" property="name" />
  9. <result column="keyword" jdbcType="VARCHAR" property="keyword" />
  10. <result column="category" jdbcType="INTEGER" property="category" />
  11. <result column="summary" jdbcType="VARCHAR" property="summary" />
  12. <result column="introduction" jdbcType="LONGVARCHAR" property="introduction" />
  13. <result column="technical_picture_url" jdbcType="VARCHAR" property="technicalPictureUrl" />
  14. <result column="field_a" jdbcType="INTEGER" property="fieldA" />
  15. <result column="field_b" jdbcType="INTEGER" property="fieldB" />
  16. <result column="field_c" jdbcType="INTEGER" property="fieldC" />
  17. <result column="maturity" jdbcType="INTEGER" property="maturity" />
  18. <result column="maturity_picture_url" jdbcType="LONGVARCHAR" property="maturityPictureUrl" />
  19. <result column="maturity_text_file_url" jdbcType="VARCHAR" property="maturityTextFileUrl" />
  20. <result column="maturity_video_url" jdbcType="VARCHAR" property="maturityVideoUrl" />
  21. <result column="innovation" jdbcType="INTEGER" property="innovation" />
  22. <result column="owner_id" jdbcType="VARCHAR" property="ownerId" />
  23. <result column="owner_name" jdbcType="VARCHAR" property="ownerName" />
  24. <result column="owner_type" jdbcType="INTEGER" property="ownerType" />
  25. <result column="owner_id_number" jdbcType="VARCHAR" property="ownerIdNumber" />
  26. <result column="owner_mobile" jdbcType="VARCHAR" property="ownerMobile" />
  27. <result column="owner_email" jdbcType="VARCHAR" property="ownerEmail" />
  28. <result column="owner_postal_address" jdbcType="VARCHAR" property="ownerPostalAddress" />
  29. <result column="cooperation_mode" jdbcType="INTEGER" property="cooperationMode" />
  30. <result column="transfer_mode" jdbcType="INTEGER" property="transferMode" />
  31. <result column="bargaining_mode" jdbcType="INTEGER" property="bargainingMode" />
  32. <result column="transfer_price" jdbcType="DECIMAL" property="transferPrice" />
  33. <result column="technical_scene" jdbcType="VARCHAR" property="technicalScene" />
  34. <result column="breakthrough" jdbcType="VARCHAR" property="breakthrough" />
  35. <result column="patent_case" jdbcType="VARCHAR" property="patentCase" />
  36. <result column="awards" jdbcType="VARCHAR" property="awards" />
  37. <result column="team_des" jdbcType="VARCHAR" property="teamDes" />
  38. <result column="parameter" jdbcType="VARCHAR" property="parameter" />
  39. <result column="tech_plan_url" jdbcType="VARCHAR" property="techPlanUrl" />
  40. <result column="business_plan_url" jdbcType="VARCHAR" property="businessPlanUrl" />
  41. <result column="org_id" jdbcType="VARCHAR" property="orgId" />
  42. <result column="org_name" jdbcType="VARCHAR" property="orgName" />
  43. <result column="org_address" jdbcType="VARCHAR" property="orgAddress" />
  44. <result column="org_email" jdbcType="VARCHAR" property="orgEmail" />
  45. <result column="org_contacts" jdbcType="VARCHAR" property="orgContacts" />
  46. <result column="org_contacts_mobile" jdbcType="VARCHAR" property="orgContactsMobile" />
  47. <result column="contacts" jdbcType="INTEGER" property="contacts" />
  48. <result column="manager_id" jdbcType="VARCHAR" property="managerId" />
  49. <result column="salesman_id" jdbcType="VARCHAR" property="salesmanId" />
  50. <result column="status" jdbcType="INTEGER" property="status" />
  51. <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
  52. <result column="release_status" jdbcType="INTEGER" property="releaseStatus" />
  53. <result column="release_date" jdbcType="TIMESTAMP" property="releaseDate" />
  54. <result column="deleted_sign" jdbcType="INTEGER" property="deletedSign" />
  55. <result column="audit_status" jdbcType="INTEGER" property="auditStatus" />
  56. <result column="tech_broker_id" jdbcType="VARCHAR" property="techBrokerId" />
  57. <result column="country_name_zh" jdbcType="VARCHAR" property="countryNameZh" />
  58. <result column="international_flag" jdbcType="INTEGER" property="internationalFlag" />
  59. <result column="jmrh_flag" jdbcType="INTEGER" property="jmrhFlag" />
  60. <result column="boutique" jdbcType="INTEGER" property="boutique" />
  61. </resultMap>
  62. <sql id="Base_Column_List">
  63. id, serial_number, data_category, name, keyword, category, summary, introduction,
  64. technical_picture_url, field_a, field_b, field_c, maturity, maturity_picture_url,
  65. maturity_text_file_url, maturity_video_url, innovation, owner_id, owner_name, owner_type, owner_id_number,
  66. owner_mobile, owner_email, owner_postal_address, cooperation_mode, transfer_mode,
  67. bargaining_mode, transfer_price, technical_scene, breakthrough, patent_case, awards,
  68. team_des, parameter, tech_plan_url, business_plan_url, org_id, org_name, org_address,
  69. org_email, org_contacts, org_contacts_mobile, contacts, manager_id, salesman_id,
  70. status, create_time, release_status, release_date, deleted_sign, audit_status, tech_broker_id,
  71. country_name_zh,international_flag,jmrh_flag,boutique
  72. </sql>
  73. <select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
  74. select
  75. <include refid="Base_Column_List" />
  76. from achievement
  77. where id = #{id,jdbcType=VARCHAR}
  78. </select>
  79. <delete id="deleteByPrimaryKey" parameterType="java.lang.String">
  80. delete from achievement
  81. where id = #{id,jdbcType=VARCHAR}
  82. </delete>
  83. <insert id="insert" parameterType="com.goafanti.common.model.Achievement">
  84. insert into achievement (id, serial_number, data_category,
  85. name, keyword, category,
  86. summary, introduction, technical_picture_url,
  87. field_a, field_b, field_c,
  88. maturity, maturity_picture_url, maturity_text_file_url,
  89. maturity_video_url, innovation, owner_id, owner_name,
  90. owner_type, owner_id_number, owner_mobile,
  91. owner_email, owner_postal_address, cooperation_mode,
  92. transfer_mode, bargaining_mode, transfer_price,
  93. technical_scene, breakthrough, patent_case,
  94. awards, team_des, parameter,
  95. tech_plan_url, business_plan_url, org_id,
  96. org_name, org_address, org_email,
  97. org_contacts, org_contacts_mobile, contacts,
  98. manager_id, salesman_id, status,
  99. create_time, release_status, release_date,
  100. deleted_sign, audit_status, tech_broker_id,
  101. country_name_zh,international_flag,jmrh_flag,boutique,remark)
  102. values (#{id,jdbcType=VARCHAR}, #{serialNumber,jdbcType=INTEGER}, #{dataCategory,jdbcType=INTEGER},
  103. #{name,jdbcType=VARCHAR}, #{keyword,jdbcType=VARCHAR}, #{category,jdbcType=INTEGER},
  104. #{summary,jdbcType=VARCHAR}, #{introduction,jdbcType=LONGVARCHAR}, #{technicalPictureUrl,jdbcType=VARCHAR},
  105. #{fieldA,jdbcType=INTEGER}, #{fieldB,jdbcType=INTEGER}, #{fieldC,jdbcType=INTEGER},
  106. #{maturity,jdbcType=INTEGER}, #{maturityPictureUrl,jdbcType=LONGVARCHAR}, #{maturityTextFileUrl,jdbcType=VARCHAR},
  107. #{maturityVideoUrl,jdbcType=VARCHAR}, #{innovation,jdbcType=INTEGER}, #{ownerId,jdbcType=VARCHAR}, #{ownerName,jdbcType=VARCHAR},
  108. #{ownerType,jdbcType=INTEGER}, #{ownerIdNumber,jdbcType=VARCHAR}, #{ownerMobile,jdbcType=VARCHAR},
  109. #{ownerEmail,jdbcType=VARCHAR}, #{ownerPostalAddress,jdbcType=VARCHAR}, #{cooperationMode,jdbcType=INTEGER},
  110. #{transferMode,jdbcType=INTEGER}, #{bargainingMode,jdbcType=INTEGER}, #{transferPrice,jdbcType=DECIMAL},
  111. #{technicalScene,jdbcType=VARCHAR}, #{breakthrough,jdbcType=VARCHAR}, #{patentCase,jdbcType=VARCHAR},
  112. #{awards,jdbcType=VARCHAR}, #{teamDes,jdbcType=VARCHAR}, #{parameter,jdbcType=VARCHAR},
  113. #{techPlanUrl,jdbcType=VARCHAR}, #{businessPlanUrl,jdbcType=VARCHAR}, #{orgId,jdbcType=VARCHAR},
  114. #{orgName,jdbcType=VARCHAR}, #{orgAddress,jdbcType=VARCHAR}, #{orgEmail,jdbcType=VARCHAR},
  115. #{orgContacts,jdbcType=VARCHAR}, #{orgContactsMobile,jdbcType=VARCHAR}, #{contacts,jdbcType=INTEGER},
  116. #{managerId,jdbcType=VARCHAR}, #{salesmanId,jdbcType=VARCHAR}, #{status,jdbcType=INTEGER},
  117. #{createTime,jdbcType=TIMESTAMP}, #{releaseStatus,jdbcType=INTEGER}, #{releaseDate,jdbcType=TIMESTAMP},
  118. #{deletedSign,jdbcType=INTEGER}, #{auditStatus,jdbcType=INTEGER}, #{techBrokerId,jdbcType=VARCHAR},
  119. #{countryNameZh,jdbcType=VARCHAR}, #{internationalFlag,jdbcType=INTEGER},#{jmrhFlag,jdbcType=INTEGER},#{boutique,jdbcType=INTEGER},#{remark,jdbcType=VARCHAR})
  120. </insert>
  121. <insert id="insertSelective" parameterType="com.goafanti.common.model.Achievement">
  122. insert into achievement
  123. <trim prefix="(" suffix=")" suffixOverrides=",">
  124. <if test="id != null">
  125. id,
  126. </if>
  127. <if test="serialNumber != null">
  128. serial_number,
  129. </if>
  130. <if test="dataCategory != null">
  131. data_category,
  132. </if>
  133. <if test="name != null">
  134. name,
  135. </if>
  136. <if test="keyword != null">
  137. keyword,
  138. </if>
  139. <if test="category != null">
  140. category,
  141. </if>
  142. <if test="summary != null">
  143. summary,
  144. </if>
  145. <if test="introduction != null">
  146. introduction,
  147. </if>
  148. <if test="technicalPictureUrl != null">
  149. technical_picture_url,
  150. </if>
  151. <if test="fieldA != null">
  152. field_a,
  153. </if>
  154. <if test="fieldB != null">
  155. field_b,
  156. </if>
  157. <if test="fieldC != null">
  158. field_c,
  159. </if>
  160. <if test="maturity != null">
  161. maturity,
  162. </if>
  163. <if test="maturityPictureUrl != null">
  164. maturity_picture_url,
  165. </if>
  166. <if test="maturityTextFileUrl != null">
  167. maturity_text_file_url,
  168. </if>
  169. <if test="maturityVideoUrl != null">
  170. maturity_video_url,
  171. </if>
  172. <if test="innovation != null">
  173. innovation,
  174. </if>
  175. <if test="ownerId != null">
  176. owner_id,
  177. </if>
  178. <if test="ownerName != null">
  179. owner_name,
  180. </if>
  181. <if test="ownerType != null">
  182. owner_type,
  183. </if>
  184. <if test="ownerIdNumber != null">
  185. owner_id_number,
  186. </if>
  187. <if test="ownerMobile != null">
  188. owner_mobile,
  189. </if>
  190. <if test="ownerEmail != null">
  191. owner_email,
  192. </if>
  193. <if test="ownerPostalAddress != null">
  194. owner_postal_address,
  195. </if>
  196. <if test="cooperationMode != null">
  197. cooperation_mode,
  198. </if>
  199. <if test="transferMode != null">
  200. transfer_mode,
  201. </if>
  202. <if test="bargainingMode != null">
  203. bargaining_mode,
  204. </if>
  205. <if test="transferPrice != null">
  206. transfer_price,
  207. </if>
  208. <if test="technicalScene != null">
  209. technical_scene,
  210. </if>
  211. <if test="breakthrough != null">
  212. breakthrough,
  213. </if>
  214. <if test="patentCase != null">
  215. patent_case,
  216. </if>
  217. <if test="awards != null">
  218. awards,
  219. </if>
  220. <if test="teamDes != null">
  221. team_des,
  222. </if>
  223. <if test="parameter != null">
  224. parameter,
  225. </if>
  226. <if test="techPlanUrl != null">
  227. tech_plan_url,
  228. </if>
  229. <if test="businessPlanUrl != null">
  230. business_plan_url,
  231. </if>
  232. <if test="orgId != null">
  233. org_id,
  234. </if>
  235. <if test="orgName != null">
  236. org_name,
  237. </if>
  238. <if test="orgAddress != null">
  239. org_address,
  240. </if>
  241. <if test="orgEmail != null">
  242. org_email,
  243. </if>
  244. <if test="orgContacts != null">
  245. org_contacts,
  246. </if>
  247. <if test="orgContactsMobile != null">
  248. org_contacts_mobile,
  249. </if>
  250. <if test="contacts != null">
  251. contacts,
  252. </if>
  253. <if test="managerId != null">
  254. manager_id,
  255. </if>
  256. <if test="salesmanId != null">
  257. salesman_id,
  258. </if>
  259. <if test="status != null">
  260. status,
  261. </if>
  262. <if test="createTime != null">
  263. create_time,
  264. </if>
  265. <if test="releaseStatus != null">
  266. release_status,
  267. </if>
  268. <if test="releaseDate != null">
  269. release_date,
  270. </if>
  271. <if test="deletedSign != null">
  272. deleted_sign,
  273. </if>
  274. <if test="auditStatus != null">
  275. audit_status,
  276. </if>
  277. <if test="techBrokerId != null">
  278. tech_broker_id,
  279. </if>
  280. <if test="countryNameZh != null">
  281. country_name_zh,
  282. </if>
  283. <if test="internationalFlag != null">
  284. international_flag,
  285. </if>
  286. <if test="jmrhFlag != null">
  287. jmrh_flag,
  288. </if>
  289. <if test="boutique !=null">
  290. boutique,
  291. </if>
  292. </trim>
  293. <trim prefix="values (" suffix=")" suffixOverrides=",">
  294. <if test="id != null">
  295. #{id,jdbcType=VARCHAR},
  296. </if>
  297. <if test="serialNumber != null">
  298. #{serialNumber,jdbcType=INTEGER},
  299. </if>
  300. <if test="dataCategory != null">
  301. #{dataCategory,jdbcType=INTEGER},
  302. </if>
  303. <if test="name != null">
  304. #{name,jdbcType=VARCHAR},
  305. </if>
  306. <if test="keyword != null">
  307. #{keyword,jdbcType=VARCHAR},
  308. </if>
  309. <if test="category != null">
  310. #{category,jdbcType=INTEGER},
  311. </if>
  312. <if test="summary != null">
  313. #{summary,jdbcType=VARCHAR},
  314. </if>
  315. <if test="introduction != null">
  316. #{introduction,jdbcType=LONGVARCHAR},
  317. </if>
  318. <if test="technicalPictureUrl != null">
  319. #{technicalPictureUrl,jdbcType=VARCHAR},
  320. </if>
  321. <if test="fieldA != null">
  322. #{fieldA,jdbcType=INTEGER},
  323. </if>
  324. <if test="fieldB != null">
  325. #{fieldB,jdbcType=INTEGER},
  326. </if>
  327. <if test="fieldC != null">
  328. #{fieldC,jdbcType=INTEGER},
  329. </if>
  330. <if test="maturity != null">
  331. #{maturity,jdbcType=INTEGER},
  332. </if>
  333. <if test="maturityPictureUrl != null">
  334. #{maturityPictureUrl,jdbcType=LONGVARCHAR},
  335. </if>
  336. <if test="maturityTextFileUrl != null">
  337. #{maturityTextFileUrl,jdbcType=VARCHAR},
  338. </if>
  339. <if test="maturityVideoUrl != null">
  340. #{maturityVideoUrl,jdbcType=VARCHAR},
  341. </if>
  342. <if test="innovation != null">
  343. #{innovation,jdbcType=INTEGER},
  344. </if>
  345. <if test="ownerId != null">
  346. #{ownerId,jdbcType=VARCHAR},
  347. </if>
  348. <if test="ownerName != null">
  349. #{ownerName,jdbcType=VARCHAR},
  350. </if>
  351. <if test="ownerType != null">
  352. #{ownerType,jdbcType=INTEGER},
  353. </if>
  354. <if test="ownerIdNumber != null">
  355. #{ownerIdNumber,jdbcType=VARCHAR},
  356. </if>
  357. <if test="ownerMobile != null">
  358. #{ownerMobile,jdbcType=VARCHAR},
  359. </if>
  360. <if test="ownerEmail != null">
  361. #{ownerEmail,jdbcType=VARCHAR},
  362. </if>
  363. <if test="ownerPostalAddress != null">
  364. #{ownerPostalAddress,jdbcType=VARCHAR},
  365. </if>
  366. <if test="cooperationMode != null">
  367. #{cooperationMode,jdbcType=INTEGER},
  368. </if>
  369. <if test="transferMode != null">
  370. #{transferMode,jdbcType=INTEGER},
  371. </if>
  372. <if test="bargainingMode != null">
  373. #{bargainingMode,jdbcType=INTEGER},
  374. </if>
  375. <if test="transferPrice != null">
  376. #{transferPrice,jdbcType=DECIMAL},
  377. </if>
  378. <if test="technicalScene != null">
  379. #{technicalScene,jdbcType=VARCHAR},
  380. </if>
  381. <if test="breakthrough != null">
  382. #{breakthrough,jdbcType=VARCHAR},
  383. </if>
  384. <if test="patentCase != null">
  385. #{patentCase,jdbcType=VARCHAR},
  386. </if>
  387. <if test="awards != null">
  388. #{awards,jdbcType=VARCHAR},
  389. </if>
  390. <if test="teamDes != null">
  391. #{teamDes,jdbcType=VARCHAR},
  392. </if>
  393. <if test="parameter != null">
  394. #{parameter,jdbcType=VARCHAR},
  395. </if>
  396. <if test="techPlanUrl != null">
  397. #{techPlanUrl,jdbcType=VARCHAR},
  398. </if>
  399. <if test="businessPlanUrl != null">
  400. #{businessPlanUrl,jdbcType=VARCHAR},
  401. </if>
  402. <if test="orgId != null">
  403. #{orgId,jdbcType=VARCHAR},
  404. </if>
  405. <if test="orgName != null">
  406. #{orgName,jdbcType=VARCHAR},
  407. </if>
  408. <if test="orgAddress != null">
  409. #{orgAddress,jdbcType=VARCHAR},
  410. </if>
  411. <if test="orgEmail != null">
  412. #{orgEmail,jdbcType=VARCHAR},
  413. </if>
  414. <if test="orgContacts != null">
  415. #{orgContacts,jdbcType=VARCHAR},
  416. </if>
  417. <if test="orgContactsMobile != null">
  418. #{orgContactsMobile,jdbcType=VARCHAR},
  419. </if>
  420. <if test="contacts != null">
  421. #{contacts,jdbcType=INTEGER},
  422. </if>
  423. <if test="managerId != null">
  424. #{managerId,jdbcType=VARCHAR},
  425. </if>
  426. <if test="salesmanId != null">
  427. #{salesmanId,jdbcType=VARCHAR},
  428. </if>
  429. <if test="status != null">
  430. #{status,jdbcType=INTEGER},
  431. </if>
  432. <if test="createTime != null">
  433. #{createTime,jdbcType=TIMESTAMP},
  434. </if>
  435. <if test="releaseStatus != null">
  436. #{releaseStatus,jdbcType=INTEGER},
  437. </if>
  438. <if test="releaseDate != null">
  439. #{releaseDate,jdbcType=TIMESTAMP},
  440. </if>
  441. <if test="deletedSign != null">
  442. #{deletedSign,jdbcType=INTEGER},
  443. </if>
  444. <if test="auditStatus != null">
  445. #{auditStatus,jdbcType=INTEGER},
  446. </if>
  447. <if test="techBrokerId != null">
  448. #{techBrokerId,jdbcType=VARCHAR},
  449. </if>
  450. <if test="countryNameZh != null">
  451. #{countryNameZh,jdbcType=VARCHAR},
  452. </if>
  453. <if test="internationalFlag != null">
  454. #{internationalFlag,jdbcType=INTEGER},
  455. </if>
  456. <if test="jmrhFlag != null">
  457. #{jmrhFlag,jdbcType=INTEGER},
  458. </if>
  459. <if test="boutique != null">
  460. #{boutique,jdbcType=INTEGER}
  461. </if>
  462. </trim>
  463. </insert>
  464. <update id="updateByPrimaryKeySelective" parameterType="com.goafanti.common.model.Achievement">
  465. update achievement
  466. <set>
  467. <if test="serialNumber != null">
  468. serial_number = #{serialNumber,jdbcType=INTEGER},
  469. </if>
  470. <if test="dataCategory != null">
  471. data_category = #{dataCategory,jdbcType=INTEGER},
  472. </if>
  473. <if test="name != null">
  474. name = #{name,jdbcType=VARCHAR},
  475. </if>
  476. <if test="keyword != null">
  477. keyword = #{keyword,jdbcType=VARCHAR},
  478. </if>
  479. <if test="category != null">
  480. category = #{category,jdbcType=INTEGER},
  481. </if>
  482. <if test="summary != null">
  483. summary = #{summary,jdbcType=VARCHAR},
  484. </if>
  485. <if test="introduction != null">
  486. introduction = #{introduction,jdbcType=LONGVARCHAR},
  487. </if>
  488. <if test="technicalPictureUrl != null">
  489. technical_picture_url = #{technicalPictureUrl,jdbcType=VARCHAR},
  490. </if>
  491. <if test="fieldA != null">
  492. field_a = #{fieldA,jdbcType=INTEGER},
  493. </if>
  494. <if test="fieldB != null">
  495. field_b = #{fieldB,jdbcType=INTEGER},
  496. </if>
  497. <if test="fieldC != null">
  498. field_c = #{fieldC,jdbcType=INTEGER},
  499. </if>
  500. <if test="maturity != null">
  501. maturity = #{maturity,jdbcType=INTEGER},
  502. </if>
  503. <if test="maturityPictureUrl != null">
  504. maturity_picture_url = #{maturityPictureUrl,jdbcType=LONGVARCHAR},
  505. </if>
  506. <if test="maturityTextFileUrl != null">
  507. maturity_text_file_url = #{maturityTextFileUrl,jdbcType=VARCHAR},
  508. </if>
  509. <if test="maturityVideoUrl != null">
  510. maturity_video_url = #{maturityVideoUrl,jdbcType=VARCHAR},
  511. </if>
  512. <if test="innovation != null">
  513. innovation = #{innovation,jdbcType=INTEGER},
  514. </if>
  515. <if test="ownerId != null">
  516. owner_id = #{ownerId,jdbcType=VARCHAR},
  517. </if>
  518. <if test="ownerName != null">
  519. owner_name = #{ownerName,jdbcType=VARCHAR},
  520. </if>
  521. <if test="ownerType != null">
  522. owner_type = #{ownerType,jdbcType=INTEGER},
  523. </if>
  524. <if test="ownerIdNumber != null">
  525. owner_id_number = #{ownerIdNumber,jdbcType=VARCHAR},
  526. </if>
  527. <if test="ownerMobile != null">
  528. owner_mobile = #{ownerMobile,jdbcType=VARCHAR},
  529. </if>
  530. <if test="ownerEmail != null">
  531. owner_email = #{ownerEmail,jdbcType=VARCHAR},
  532. </if>
  533. <if test="ownerPostalAddress != null">
  534. owner_postal_address = #{ownerPostalAddress,jdbcType=VARCHAR},
  535. </if>
  536. <if test="cooperationMode != null">
  537. cooperation_mode = #{cooperationMode,jdbcType=INTEGER},
  538. </if>
  539. <if test="transferMode != null">
  540. transfer_mode = #{transferMode,jdbcType=INTEGER},
  541. </if>
  542. <if test="bargainingMode != null">
  543. bargaining_mode = #{bargainingMode,jdbcType=INTEGER},
  544. </if>
  545. <if test="transferPrice != null">
  546. transfer_price = #{transferPrice,jdbcType=DECIMAL},
  547. </if>
  548. <if test="technicalScene != null">
  549. technical_scene = #{technicalScene,jdbcType=VARCHAR},
  550. </if>
  551. <if test="breakthrough != null">
  552. breakthrough = #{breakthrough,jdbcType=VARCHAR},
  553. </if>
  554. <if test="patentCase != null">
  555. patent_case = #{patentCase,jdbcType=VARCHAR},
  556. </if>
  557. <if test="awards != null">
  558. awards = #{awards,jdbcType=VARCHAR},
  559. </if>
  560. <if test="teamDes != null">
  561. team_des = #{teamDes,jdbcType=VARCHAR},
  562. </if>
  563. <if test="parameter != null">
  564. parameter = #{parameter,jdbcType=VARCHAR},
  565. </if>
  566. <if test="techPlanUrl != null">
  567. tech_plan_url = #{techPlanUrl,jdbcType=VARCHAR},
  568. </if>
  569. <if test="businessPlanUrl != null">
  570. business_plan_url = #{businessPlanUrl,jdbcType=VARCHAR},
  571. </if>
  572. <if test="orgId != null">
  573. org_id = #{orgId,jdbcType=VARCHAR},
  574. </if>
  575. <if test="orgName != null">
  576. org_name = #{orgName,jdbcType=VARCHAR},
  577. </if>
  578. <if test="orgAddress != null">
  579. org_address = #{orgAddress,jdbcType=VARCHAR},
  580. </if>
  581. <if test="orgEmail != null">
  582. org_email = #{orgEmail,jdbcType=VARCHAR},
  583. </if>
  584. <if test="orgContacts != null">
  585. org_contacts = #{orgContacts,jdbcType=VARCHAR},
  586. </if>
  587. <if test="orgContactsMobile != null">
  588. org_contacts_mobile = #{orgContactsMobile,jdbcType=VARCHAR},
  589. </if>
  590. <if test="contacts != null">
  591. contacts = #{contacts,jdbcType=INTEGER},
  592. </if>
  593. <if test="managerId != null">
  594. manager_id = #{managerId,jdbcType=VARCHAR},
  595. </if>
  596. <if test="salesmanId != null">
  597. salesman_id = #{salesmanId,jdbcType=VARCHAR},
  598. </if>
  599. <if test="status != null">
  600. status = #{status,jdbcType=INTEGER},
  601. </if>
  602. <if test="createTime != null">
  603. create_time = #{createTime,jdbcType=TIMESTAMP},
  604. </if>
  605. <if test="releaseStatus != null">
  606. release_status = #{releaseStatus,jdbcType=INTEGER},
  607. </if>
  608. <if test="releaseDate != null">
  609. release_date = #{releaseDate,jdbcType=TIMESTAMP},
  610. </if>
  611. <if test="deletedSign != null">
  612. deleted_sign = #{deletedSign,jdbcType=INTEGER},
  613. </if>
  614. <if test="auditStatus != null">
  615. audit_status = #{auditStatus,jdbcType=INTEGER},
  616. </if>
  617. <if test="techBrokerId != null">
  618. tech_broker_id = #{techBrokerId,jdbcType=VARCHAR},
  619. </if>
  620. <if test="countryNameZh != null">
  621. country_name_zh = #{countryNameZh,jdbcType=VARCHAR},
  622. </if>
  623. <if test="internationalFlag != null">
  624. international_flag = #{internationalFlag,jdbcType=INTEGER},
  625. </if>
  626. <if test="jmrhFlag != null">
  627. jmrh_flag = #{jmrhFlag,jdbcType=INTEGER},
  628. </if>
  629. <if test="boutique != null">
  630. boutique = #{boutique,jdbcType=INTEGER},
  631. </if>
  632. <if test="remark != null">
  633. remark = #{remark,jdbcType=VARCHAR},
  634. </if>
  635. </set>
  636. where id = #{id,jdbcType=VARCHAR}
  637. </update>
  638. <update id="updateByPrimaryKey" parameterType="com.goafanti.common.model.Achievement">
  639. update achievement
  640. set serial_number = #{serialNumber,jdbcType=INTEGER},
  641. data_category = #{dataCategory,jdbcType=INTEGER},
  642. name = #{name,jdbcType=VARCHAR},
  643. keyword = #{keyword,jdbcType=VARCHAR},
  644. category = #{category,jdbcType=INTEGER},
  645. summary = #{summary,jdbcType=VARCHAR},
  646. introduction = #{introduction,jdbcType=LONGVARCHAR},
  647. technical_picture_url = #{technicalPictureUrl,jdbcType=VARCHAR},
  648. field_a = #{fieldA,jdbcType=INTEGER},
  649. field_b = #{fieldB,jdbcType=INTEGER},
  650. field_c = #{fieldC,jdbcType=INTEGER},
  651. maturity = #{maturity,jdbcType=INTEGER},
  652. maturity_picture_url = #{maturityPictureUrl,jdbcType=LONGVARCHAR},
  653. maturity_text_file_url = #{maturityTextFileUrl,jdbcType=VARCHAR},
  654. maturity_video_url = #{maturityVideoUrl,jdbcType=VARCHAR},
  655. innovation = #{innovation,jdbcType=INTEGER},
  656. owner_id = #{ownerId,jdbcType=VARCHAR},
  657. owner_name = #{ownerName,jdbcType=VARCHAR},
  658. owner_type = #{ownerType,jdbcType=INTEGER},
  659. owner_id_number = #{ownerIdNumber,jdbcType=VARCHAR},
  660. owner_mobile = #{ownerMobile,jdbcType=VARCHAR},
  661. owner_email = #{ownerEmail,jdbcType=VARCHAR},
  662. owner_postal_address = #{ownerPostalAddress,jdbcType=VARCHAR},
  663. cooperation_mode = #{cooperationMode,jdbcType=INTEGER},
  664. transfer_mode = #{transferMode,jdbcType=INTEGER},
  665. bargaining_mode = #{bargainingMode,jdbcType=INTEGER},
  666. transfer_price = #{transferPrice,jdbcType=DECIMAL},
  667. technical_scene = #{technicalScene,jdbcType=VARCHAR},
  668. breakthrough = #{breakthrough,jdbcType=VARCHAR},
  669. patent_case = #{patentCase,jdbcType=VARCHAR},
  670. awards = #{awards,jdbcType=VARCHAR},
  671. team_des = #{teamDes,jdbcType=VARCHAR},
  672. parameter = #{parameter,jdbcType=VARCHAR},
  673. tech_plan_url = #{techPlanUrl,jdbcType=VARCHAR},
  674. business_plan_url = #{businessPlanUrl,jdbcType=VARCHAR},
  675. org_id = #{orgId,jdbcType=VARCHAR},
  676. org_name = #{orgName,jdbcType=VARCHAR},
  677. org_address = #{orgAddress,jdbcType=VARCHAR},
  678. org_email = #{orgEmail,jdbcType=VARCHAR},
  679. org_contacts = #{orgContacts,jdbcType=VARCHAR},
  680. org_contacts_mobile = #{orgContactsMobile,jdbcType=VARCHAR},
  681. contacts = #{contacts,jdbcType=INTEGER},
  682. manager_id = #{managerId,jdbcType=VARCHAR},
  683. salesman_id = #{salesmanId,jdbcType=VARCHAR},
  684. status = #{status,jdbcType=INTEGER},
  685. create_time = #{createTime,jdbcType=TIMESTAMP},
  686. release_status = #{releaseStatus,jdbcType=INTEGER},
  687. release_date = #{releaseDate,jdbcType=TIMESTAMP},
  688. deleted_sign = #{deletedSign,jdbcType=INTEGER},
  689. audit_status = #{auditStatus,jdbcType=INTEGER},
  690. tech_broker_id = #{techBrokerId,jdbcType=VARCHAR},
  691. country_name_zh = #{countryNameZh,jdbcType=VARCHAR},
  692. international_flag = #{internationalFlag,jdbcType=INTEGER},
  693. jmrh_flag = #{jmrhFlag,jdbcType=INTEGER},
  694. boutique = #{boutique,jdbcType=INTEGER}
  695. where id = #{id,jdbcType=VARCHAR}
  696. </update>
  697. <select id="findUserOwnerAchievementListByPage" parameterType="String" resultType="com.goafanti.achievement.bo.AchievementListBo">
  698. select
  699. a.id, a.serial_number as serialNumber, a.data_category as dataCategory,
  700. a.name, a.keyword, a.category, a.owner_name as ownerName, a.owner_type as ownerType,
  701. ui.username as username, a.owner_id as ownerId, a.org_id as orgId, a.contacts,
  702. a.release_date as releaseDate, a.audit_status as auditStatus, ad.name as techBrokerId,a.boutique,a.create_time as createTime
  703. <if test="hot != null and hot == 1"><!-- 在首页 -->
  704. ,1 as hot
  705. </if>
  706. <if test="hot != null and hot == 0"><!-- 不在首页 -->
  707. ,0 as hot
  708. </if>
  709. <if test="hot==null"><!-- 无首页参数 -->
  710. ,ifnull(mm.effective,0) as hot
  711. </if>
  712. from achievement a
  713. LEFT JOIN admin ad on ad.id = a.tech_broker_id
  714. LEFT JOIN user_identity ui on a.owner_id = ui.uid
  715. <if test="hot != null and hot == 1"><!-- 在首页 -->
  716. inner join marketing_management mm on a.id = mm.product_id
  717. </if>
  718. <if test="hot == null"> <!-- 无首页参数 -->
  719. left join marketing_management mm on a.id = mm.product_id
  720. </if>
  721. where a.deleted_sign = 0 and a.owner_type = 0
  722. <if test="ownerName != null">
  723. and a.owner_name like CONCAT('%',#{ownerName,jdbcType=VARCHAR},'%')
  724. and (a.owner_id is null or a.owner_id = '')
  725. </if>
  726. <if test="username != null">
  727. and ui.username like CONCAT('%',#{username,jdbcType=VARCHAR},'%')
  728. </if>
  729. <if test="ownerId != null">
  730. and a.owner_id = #{ownerId,jdbcType=VARCHAR}
  731. </if>
  732. <if test="serialNumber != null">
  733. and a.serial_number = #{serialNumber,jdbcType=INTEGER}
  734. </if>
  735. <if test="auditStatus != null">
  736. and a.audit_status = #{auditStatus,jdbcType=INTEGER}
  737. </if>
  738. <if test="name != null">
  739. and a.name like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
  740. </if>
  741. <if test="keyword != null">
  742. and a.keyword like "%"#{keyword,jdbcType=VARCHAR}"%"
  743. </if>
  744. <if test="category != null">
  745. and a.category = #{category,jdbcType=INTEGER}
  746. </if>
  747. <if test="status != null">
  748. and a.status = #{status,jdbcType=INTEGER}
  749. </if>
  750. <if test="rStart != null">
  751. and a.release_date <![CDATA[ > ]]> #{rStart,jdbcType=TIMESTAMP}
  752. </if>
  753. <if test="rEnd != null">
  754. and a.release_date <![CDATA[ < ]]> #{rEnd,jdbcType=TIMESTAMP}
  755. </if>
  756. <if test="cStart != null">
  757. and a.create_time <![CDATA[ > ]]> #{cStart,jdbcType=TIMESTAMP}
  758. </if>
  759. <if test="cEnd != null">
  760. and a.create_time <![CDATA[ < ]]> #{cEnd,jdbcType=TIMESTAMP}
  761. </if>
  762. <if test="releaseStatus != null">
  763. and a.release_status = #{releaseStatus,jdbcType=INTEGER}
  764. </if>
  765. <if test="techBrokerId != null">
  766. and a.tech_broker_id = #{techBrokerId,jdbcType=VARCHAR}
  767. </if>
  768. <if test="boutique != null">
  769. and a.boutique = #{boutique,jdbcType=INTEGER}
  770. </if>
  771. <if test="hot != null and hot == 0"><!-- 不在首页 -->
  772. and a.id not in(select mm.product_id from marketing_management mm where mm.effective = 1)
  773. </if>
  774. <if test="hot != null and hot == 1"><!-- 在首页 -->
  775. and mm.effective = 1
  776. </if>
  777. order by a.serial_number desc
  778. <if test="page_sql!=null">
  779. ${page_sql}
  780. </if>
  781. </select>
  782. <select id="findUserOwnerAchievementCount" parameterType="String" resultType="java.lang.Integer">
  783. select
  784. count(1)
  785. from achievement a
  786. <if test="hot != null and hot == 1"><!-- 在首页 -->
  787. inner join marketing_management mm on a.id = mm.product_id
  788. </if>
  789. <if test="hot == null"> <!-- 无首页参数 -->
  790. left join marketing_management mm on a.id = mm.product_id
  791. </if>
  792. where deleted_sign = 0 and owner_type = 0
  793. <if test="ownerName != null">
  794. and a.owner_name like CONCAT('%',#{ownerName,jdbcType=VARCHAR},'%')
  795. and (a.owner_id is null or a.owner_id = '')
  796. </if>
  797. <if test="username != null">
  798. and ui.username like CONCAT('%',#{username,jdbcType=VARCHAR},'%')
  799. </if>
  800. <if test="ownerId != null">
  801. and owner_id = #{ownerId,jdbcType=VARCHAR}
  802. </if>
  803. <if test="serialNumber != null">
  804. and serial_number = #{serialNumber,jdbcType=INTEGER}
  805. </if>
  806. <if test="auditStatus != null">
  807. and audit_status = #{auditStatus,jdbcType=INTEGER}
  808. </if>
  809. <if test="name != null">
  810. and name like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
  811. </if>
  812. <if test="keyword != null">
  813. and keyword like "%"#{keyword,jdbcType=VARCHAR}"%"
  814. </if>
  815. <if test="category != null">
  816. and category = #{category,jdbcType=INTEGER}
  817. </if>
  818. <if test="status != null">
  819. and status = #{status,jdbcType=INTEGER}
  820. </if>
  821. <if test="rStart != null">
  822. and release_date <![CDATA[ > ]]> #{rStart,jdbcType=TIMESTAMP}
  823. </if>
  824. <if test="rEnd != null">
  825. and release_date <![CDATA[ < ]]> #{rEnd,jdbcType=TIMESTAMP}
  826. </if>
  827. <if test="cStart != null">
  828. and a.create_time <![CDATA[ > ]]> #{cStart,jdbcType=TIMESTAMP}
  829. </if>
  830. <if test="cEnd != null">
  831. and a.create_time <![CDATA[ < ]]> #{cEnd,jdbcType=TIMESTAMP}
  832. </if>
  833. <if test="releaseStatus != null">
  834. and release_status = #{releaseStatus,jdbcType=INTEGER}
  835. </if>
  836. <if test="techBrokerId != null">
  837. and a.tech_broker_id = #{techBrokerId,jdbcType=VARCHAR}
  838. </if>
  839. <if test="boutique != null">
  840. and a.boutique = #{boutique,jdbcType=INTEGER}
  841. </if>
  842. <if test="hot != null and hot = 0"><!-- 不在首页 -->
  843. and a.id not in(select mm.product_id from marketing_management mm where mm.effective = 1)
  844. </if>
  845. <if test="hot != null and hot = 1"><!-- 在首页 -->
  846. and mm.effective = 1
  847. </if>
  848. </select>
  849. <select id="findOrgOwnerAchievementListByPage" parameterType="String" resultType="com.goafanti.achievement.bo.AchievementListBo">
  850. select
  851. a.id, a.serial_number as serialNumber, a.data_category as dataCategory,
  852. a.name, a.keyword, a.category, a.owner_name as ownerName, a.owner_type as ownerType,
  853. oi.unit_name as username, a.owner_id as ownerId, a.org_id as orgId, a.contacts,a.create_time as createTime,
  854. a.release_date as releaseDate, a.audit_status as auditStatus, ad.name as techBrokerId,a.boutique
  855. <if test="hot != null and hot == 1"><!-- 在首页 -->
  856. ,1 as hot
  857. </if>
  858. <if test="hot != null and hot == 0"><!-- 无首页参数 -->
  859. ,0 as hot
  860. </if>
  861. <if test="hot==null"><!-- 在首页 -->
  862. ,ifnull(mm.effective,0) as hot
  863. </if>
  864. from achievement a
  865. LEFT JOIN admin ad on ad.id = a.tech_broker_id
  866. LEFT JOIN organization_identity oi on a.owner_id = oi.uid
  867. <if test="adminId != null">
  868. LEFT JOIN user u on a.owner_id = u.id
  869. </if>
  870. <if test="hot != null and hot == 1"> <!-- 在首页 -->
  871. inner join marketing_management mm on a.id = mm.product_id
  872. </if>
  873. <if test="hot == null"> <!-- 无首页参数 -->
  874. left join marketing_management mm on a.id = mm.product_id
  875. </if>
  876. where a.deleted_sign = 0 and a.owner_type = 1
  877. <if test="techBrokerId != null">
  878. and a.tech_broker_id = #{techBrokerId,jdbcType=VARCHAR}
  879. </if>
  880. <if test="ownerName != null">
  881. and a.owner_name like CONCAT('%',#{ownerName,jdbcType=VARCHAR},'%')
  882. </if>
  883. <if test="unitName != null">
  884. and oi.unit_name like CONCAT('%',#{unitName,jdbcType=VARCHAR},'%')
  885. </if>
  886. <if test="ownerId != null">
  887. and a.owner_id = #{ownerId,jdbcType=VARCHAR}
  888. </if>
  889. <if test="serialNumber != null">
  890. and a.serial_number = #{serialNumber,jdbcType=INTEGER}
  891. </if>
  892. <if test="auditStatus != null">
  893. and a.audit_status = #{auditStatus,jdbcType=INTEGER}
  894. </if>
  895. <if test="name != null">
  896. and a.name like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
  897. </if>
  898. <if test="keyword != null">
  899. and a.keyword like "%"#{keyword,jdbcType=VARCHAR}"%"
  900. </if>
  901. <if test="category != null">
  902. and a.category = #{category,jdbcType=INTEGER}
  903. </if>
  904. <if test="status != null">
  905. and a.status = #{status,jdbcType=INTEGER}
  906. </if>
  907. <if test="rStart != null">
  908. and a.release_date <![CDATA[ >= ]]> #{rStart,jdbcType=TIMESTAMP}
  909. </if>
  910. <if test="rEnd != null">
  911. and a.release_date <![CDATA[ < ]]> #{rEnd,jdbcType=TIMESTAMP}
  912. </if>
  913. <if test="cStart != null">
  914. and a.create_time <![CDATA[ >= ]]> #{cStart,jdbcType=TIMESTAMP}
  915. </if>
  916. <if test="cEnd != null">
  917. and a.create_time <![CDATA[ < ]]> #{cEnd,jdbcType=TIMESTAMP}
  918. </if>
  919. <if test="releaseStatus != null">
  920. and a.release_status = #{releaseStatus,jdbcType=INTEGER}
  921. </if>
  922. <if test="boutique != null">
  923. and a.boutique = #{boutique,jdbcType=INTEGER}
  924. </if>
  925. <if test="hot != null and hot == 0"><!-- 不在首页 -->
  926. and a.id not in(select mm.product_id from marketing_management mm where mm.effective = 1)
  927. </if>
  928. <if test="hot != null and hot == 1"><!-- 在首页 -->
  929. and mm.effective = 1
  930. </if>
  931. order by serial_number desc
  932. <if test="page_sql!=null">
  933. ${page_sql}
  934. </if>
  935. </select>
  936. <select id="findOrgOwnerAchievementCount" parameterType="String" resultType="java.lang.Integer">
  937. select
  938. count(1)
  939. from achievement a
  940. LEFT JOIN admin ad on ad.id = a.tech_broker_id
  941. LEFT JOIN organization_identity oi on a.owner_id = oi.uid
  942. <if test="adminId != null">
  943. LEFT JOIN user u on a.owner_id = u.id
  944. </if>
  945. <if test="hot != null and hot == 1"><!-- 在首页 -->
  946. inner join marketing_management mm on a.id = mm.product_id
  947. </if>
  948. <if test="hot == null"> <!-- 无首页参数 -->
  949. left join marketing_management mm on a.id = mm.product_id
  950. </if>
  951. where a.deleted_sign = 0 and a.owner_type = 1
  952. <if test="techBrokerId != null">
  953. and a.tech_broker_id = #{techBrokerId,jdbcType=VARCHAR}
  954. </if>
  955. <if test="ownerName != null">
  956. and a.owner_name like CONCAT('%',#{ownerName,jdbcType=VARCHAR},'%')
  957. </if>
  958. <if test="unitName != null">
  959. and oi.unit_name like CONCAT('%',#{unitName,jdbcType=VARCHAR},'%')
  960. </if>
  961. <if test="ownerId != null">
  962. and a.owner_id = #{ownerId,jdbcType=VARCHAR}
  963. </if>
  964. <if test="serialNumber != null">
  965. and a.serial_number = #{serialNumber,jdbcType=INTEGER}
  966. </if>
  967. <if test="auditStatus != null">
  968. and a.audit_status = #{auditStatus,jdbcType=INTEGER}
  969. </if>
  970. <if test="name != null">
  971. and a.name like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
  972. </if>
  973. <if test="keyword != null">
  974. and a.keyword like "%"#{keyword,jdbcType=VARCHAR}"%"
  975. </if>
  976. <if test="category != null">
  977. and a.category = #{category,jdbcType=INTEGER}
  978. </if>
  979. <if test="status != null">
  980. and a.status = #{status,jdbcType=INTEGER}
  981. </if>
  982. <if test="rStart != null">
  983. and a.release_date <![CDATA[ >= ]]> #{rStart,jdbcType=TIMESTAMP}
  984. </if>
  985. <if test="rEnd != null">
  986. and a.release_date <![CDATA[ < ]]> #{rEnd,jdbcType=TIMESTAMP}
  987. </if>
  988. <if test="cStart != null">
  989. and a.create_time <![CDATA[ >= ]]> #{cStart,jdbcType=TIMESTAMP}
  990. </if>
  991. <if test="cEnd != null">
  992. and a.create_time <![CDATA[ < ]]> #{cEnd,jdbcType=TIMESTAMP}
  993. </if>
  994. <if test="releaseStatus != null">
  995. and a.release_status = #{releaseStatus,jdbcType=INTEGER}
  996. </if>
  997. <if test="hot != null and hot == 0"><!-- 不在首页 -->
  998. and a.id not in(select mm.product_id from marketing_management mm where mm.effective = 1)
  999. </if>
  1000. <if test="hot != null and hot == 1"><!-- 在首页 -->
  1001. and mm.effective = 1
  1002. </if>
  1003. </select>
  1004. <update id="updateReleaseDate" parameterType="java.lang.String">
  1005. update achievement set release_date = null
  1006. where id = #{id,jdbcType=VARCHAR}
  1007. </update>
  1008. <update id="batchDeleteByPrimaryKey" parameterType="java.util.List">
  1009. update achievement set deleted_sign = 1
  1010. where id in
  1011. <foreach item="item" collection="list" open="(" separator="," close=")">
  1012. #{item}
  1013. </foreach>
  1014. </update>
  1015. <select id="findAchievementListByPage" parameterType="String" resultType="com.goafanti.achievement.bo.AchievementListBo">
  1016. select
  1017. id, serial_number as serialNumber, data_category as dataCategory,
  1018. name, keyword, category,
  1019. owner_name as ownerName, owner_type as ownerType, owner_mobile as ownerMobile,
  1020. status, release_date as releaseDate, audit_status as auditStatus
  1021. from achievement
  1022. where deleted_sign = 0 and owner_id = #{ownerId,jdbcType=VARCHAR}
  1023. <if test="serialNumber != null">
  1024. and serial_number = #{serialNumber,jdbcType=INTEGER}
  1025. </if>
  1026. <if test="auditStatus != null">
  1027. and audit_status = #{auditStatus,jdbcType=INTEGER}
  1028. </if>
  1029. <if test="name != null">
  1030. and name = #{name,jdbcType=VARCHAR}
  1031. </if>
  1032. <if test="keyword != null">
  1033. and keyword like "%"#{keyword,jdbcType=VARCHAR}"%"
  1034. </if>
  1035. <if test="category != null">
  1036. and category = #{category,jdbcType=INTEGER}
  1037. </if>
  1038. <if test="ownerType != null">
  1039. and owner_type = #{ownerType,jdbcType=INTEGER}
  1040. </if>
  1041. <if test="status != null">
  1042. and status = #{status,jdbcType=INTEGER}
  1043. </if>
  1044. <if test="rStart != null">
  1045. and release_date <![CDATA[ >= ]]> #{rStart,jdbcType=TIMESTAMP}
  1046. </if>
  1047. <if test="rEnd != null">
  1048. and release_date <![CDATA[ < ]]> #{rEnd,jdbcType=TIMESTAMP}
  1049. </if>
  1050. <if test="releaseStatus != null">
  1051. and release_status = #{releaseStatus,jdbcType=INTEGER}
  1052. </if>
  1053. order by serial_number desc
  1054. <if test="page_sql!=null">
  1055. ${page_sql}
  1056. </if>
  1057. </select>
  1058. <select id="findAchievementCount" parameterType="String" resultType="java.lang.Integer">
  1059. select
  1060. count(1)
  1061. from achievement
  1062. where deleted_sign = 0 and owner_id = #{ownerId,jdbcType=VARCHAR}
  1063. <if test="serialNumber != null">
  1064. and serial_number = #{serialNumber,jdbcType=INTEGER}
  1065. </if>
  1066. <if test="auditStatus != null">
  1067. and audit_status = #{auditStatus,jdbcType=INTEGER}
  1068. </if>
  1069. <if test="name != null">
  1070. and name = #{name,jdbcType=VARCHAR}
  1071. </if>
  1072. <if test="keyword != null">
  1073. and keyword like "%"#{keyword,jdbcType=VARCHAR}"%"
  1074. </if>
  1075. <if test="category != null">
  1076. and category = #{category,jdbcType=INTEGER}
  1077. </if>
  1078. <if test="ownerType != null">
  1079. and owner_type = #{ownerType,jdbcType=INTEGER}
  1080. </if>
  1081. <if test="status != null">
  1082. and status = #{status,jdbcType=INTEGER}
  1083. </if>
  1084. <if test="rStart != null">
  1085. and release_date <![CDATA[ >= ]]> #{rStart,jdbcType=TIMESTAMP}
  1086. </if>
  1087. <if test="rEnd != null">
  1088. and release_date <![CDATA[ < ]]> #{rEnd,jdbcType=TIMESTAMP}
  1089. </if>
  1090. <if test="releaseStatus != null">
  1091. and release_status = #{releaseStatus,jdbcType=INTEGER}
  1092. </if>
  1093. </select>
  1094. <select id="selectUserOwnerDetail" parameterType="java.lang.String" resultType="com.goafanti.achievement.bo.AchievementUserOwnerDetailBo">
  1095. select
  1096. a.id, a.serial_number as serialNumber, a.data_category as dataCategory,
  1097. a.name, a.keyword, a.category,
  1098. a.summary, a.introduction, a.technical_picture_url as technicalPictureUrl,
  1099. a.field_a as fieldA, a.field_b as fieldB, a.field_c as fieldC,
  1100. a.maturity, a.maturity_picture_url as maturityPictureUrl, a.maturity_text_file_url as maturityTextFileUrl,
  1101. a.maturity_video_url as maturityVideoUrl, a.innovation, a.owner_id as ownerId,
  1102. a.owner_name as ownerName, a.owner_type as ownerType, a.owner_id_number as ownerIdNumber,
  1103. a.owner_mobile as ownerMobile, a.owner_email as ownerEmail, a.owner_postal_address as ownerPostalAddress,
  1104. a.cooperation_mode as cooperationMode, a.transfer_mode as transferMode, a.bargaining_mode as bargainingMode,
  1105. a.transfer_price as transferPrice, a.technical_scene as technicalScene, a.breakthrough,
  1106. a.patent_case as patentCase, a.awards, a.team_des as teamDes, a.international_flag as internationalFlag,
  1107. a.parameter, a.tech_plan_url as techPlanUrl, a.business_plan_url as businessPlanUrl,
  1108. a.contacts, a.manager_id as managerId, a.salesman_id as salesmanId,
  1109. a.create_time as createTime, a.release_status as releaseStatus,
  1110. a.release_date as releaseDate, a.audit_status as auditStatus, a.tech_broker_id as techBrokerId,
  1111. ui.username as iOwnerName, ui.province, ui.city, ui.area, u.email as iOwnerEmail,
  1112. ui.id_number as iOwnerIdNumber, u.mobile as iOwnerMobile,a.boutique,ifnull(mm.effective,0) as hot,mm.cover_img as coverImg
  1113. from achievement a
  1114. left join user_identity ui on a.owner_id = ui.uid
  1115. left join user u on u.id = a.owner_id
  1116. left join marketing_management mm on a.id = mm.product_id
  1117. where a.id = #{id,jdbcType=VARCHAR}
  1118. </select>
  1119. <select id="selectOrgOwnerDetail" parameterType="java.lang.String" resultType="com.goafanti.achievement.bo.AchievementOrgOwnerDetailBo">
  1120. select
  1121. a.id, a.serial_number as serialNumber, a.data_category as dataCategory,
  1122. a.name, a.keyword, a.category,
  1123. a.summary, a.introduction, a.technical_picture_url as technicalPictureUrl,
  1124. a.field_a as fieldA, a.field_b as fieldB, a.field_c as fieldC,
  1125. a.maturity, a.maturity_picture_url as maturityPictureUrl, a.maturity_text_file_url as maturityTextFileUrl,
  1126. a.maturity_video_url as maturityVideoUrl, a.innovation, a.owner_id as ownerId,
  1127. a.owner_name as ownerName, a.owner_type as ownerType, a.owner_id_number as ownerIdNumber,
  1128. a.owner_mobile as ownerMobile, a.owner_email as ownerEmail, a.owner_postal_address as ownerPostalAddress,
  1129. a.cooperation_mode as cooperationMode, a.transfer_mode as transferMode, a.bargaining_mode as bargainingMode,
  1130. a.transfer_price as transferPrice, a.technical_scene as technicalScene, a.breakthrough,
  1131. a.patent_case as patentCase, a.awards, a.team_des as teamDes,
  1132. a.parameter, a.tech_plan_url as techPlanUrl, a.business_plan_url as businessPlanUrl,
  1133. a.contacts, a.manager_id as managerId, a.salesman_id as salesmanId, a.international_flag as internationalFlag,
  1134. a.create_time as createTime, a.release_status as releaseStatus,
  1135. a.release_date as releaseDate, a.audit_status as auditStatus, a.tech_broker_id as techBrokerId,
  1136. oi.unit_name as iOwnerName, oi.postal_address as iOwnerPostalAddress, u.email as iOwnerEmail,
  1137. oi.org_code as iOwnerIdNumber, u.mobile as iOwnerMobile,a.boutique,ifnull(mm.effective,0) hot,mm.cover_img as coverImg,a.remark
  1138. from achievement a
  1139. left join organization_identity oi on a.owner_id = oi.uid
  1140. left join user u on u.id = a.owner_id
  1141. left join marketing_management mm on a.id = mm.product_id
  1142. where a.id = #{id,jdbcType=VARCHAR}
  1143. </select>
  1144. <insert id="insertBatch" parameterType="com.goafanti.common.model.Achievement">
  1145. insert into achievement
  1146. (id, deleted_sign, audit_status,
  1147. create_time, release_status, data_category,
  1148. name, keyword, category,
  1149. owner_name, owner_type, owner_id_number,
  1150. owner_mobile, owner_email, owner_postal_address,
  1151. cooperation_mode, introduction, tech_broker_id,international_flag
  1152. )
  1153. values
  1154. <foreach item="item" index="index" collection="list" separator=",">
  1155. (
  1156. #{item.id,jdbcType=VARCHAR}, #{item.deletedSign,jdbcType=INTEGER}, #{item.auditStatus,jdbcType=INTEGER},
  1157. #{item.createTime,jdbcType=TIMESTAMP}, #{item.releaseStatus,jdbcType=INTEGER}, #{item.dataCategory,jdbcType=INTEGER},
  1158. #{item.name,jdbcType=VARCHAR}, #{item.keyword,jdbcType=VARCHAR}, #{item.category,jdbcType=INTEGER},
  1159. #{item.ownerName,jdbcType=VARCHAR}, #{item.ownerType,jdbcType=VARCHAR}, #{item.ownerIdNumber,jdbcType=VARCHAR},
  1160. #{item.ownerMobile,jdbcType=VARCHAR}, #{item.ownerEmail,jdbcType=VARCHAR}, #{item.ownerPostalAddress,jdbcType=VARCHAR},
  1161. #{item.cooperationMode,jdbcType=INTEGER}, #{item.introduction,jdbcType=LONGVARCHAR},#{item.techBrokerId,jdbcType=VARCHAR},
  1162. #{item.internationalFlag,jdbcType=INTEGER}
  1163. )
  1164. </foreach>
  1165. </insert>
  1166. <select id="findSearchAchievementListByPage" parameterType="String" resultType="com.goafanti.portal.bo.AchievementSearchListBo">
  1167. select
  1168. a.id, a.name, a.keyword,a.introduction,a.category,
  1169. a.serial_number as serialNumber,
  1170. a.data_category as dataCategory,
  1171. a.owner_type as ownerType,
  1172. a.owner_name as ownerName,
  1173. a.field_a as fieldA,
  1174. a.field_b as fieldB,
  1175. a.transfer_price as transferPrice,
  1176. a.maturity,
  1177. a.introduction,a.boutique,
  1178. a.transfer_mode as transferMode,
  1179. a.technical_picture_url as technicalPictureUrl,
  1180. b.name as fieldAs
  1181. from achievement a
  1182. left join field_glossory b on a.field_a = b.id
  1183. where a.deleted_sign = 0
  1184. <if test="dataCategory != null and dataCategory != ''">
  1185. and a.data_category = #{dataCategory,jdbcType=INTEGER}
  1186. </if>
  1187. <if test="category != null and category != ''">
  1188. and a.category = #{category,jdbcType=INTEGER}
  1189. </if>
  1190. <if test="fieldA != null and fieldA != ''">
  1191. and a.field_a = #{fieldA,jdbcType=INTEGER}
  1192. </if>
  1193. <if test="keyword != null and keyword != ''">
  1194. and a.keyword like "%"#{keyword,jdbcType=VARCHAR}"%"
  1195. </if>
  1196. <if test="transferMode != null">
  1197. and a.transfer_mode = #{transferMode,jdbcType=INTEGER}
  1198. </if>
  1199. <if test="upperPrice != null and upperPrice != ''">
  1200. and a.transfer_price &lt; #{upperPrice,jdbcType=VARCHAR}
  1201. </if>
  1202. <if test="lowerPrice != null and lowerPrice != ''">
  1203. and a.transfer_price &gt; #{lowerPrice,jdbcType=VARCHAR}
  1204. </if>
  1205. <if test="internationalFlag != null ">
  1206. and a.international_flag = #{internationalFlag,jdbcType=INTEGER}
  1207. </if>
  1208. and a.release_status = 1
  1209. and a.audit_status = 3
  1210. <if test="dateSort == 0">
  1211. order by a.release_date asc
  1212. </if>
  1213. <if test="dateSort == 1">
  1214. order by a.release_date desc
  1215. </if>
  1216. <if test="page_sql != null">
  1217. ${page_sql}
  1218. </if>
  1219. </select>
  1220. <select id="findSearchAchievementCount" parameterType="String" resultType="java.lang.Integer">
  1221. select
  1222. count(1)
  1223. from achievement a
  1224. where a.deleted_sign = 0
  1225. <if test="dataCategory != null and dataCategory != ''">
  1226. and a.data_category = #{dataCategory,jdbcType=INTEGER}
  1227. </if>
  1228. <if test="category != null and category != ''">
  1229. and a.category = #{category,jdbcType=INTEGER}
  1230. </if>
  1231. <if test="fieldA != null and fieldA != ''">
  1232. and a.field_a = #{fieldA,jdbcType=INTEGER}
  1233. </if>
  1234. <if test="keyword != null and keyword != ''">
  1235. and a.keyword like "%"#{keyword,jdbcType=VARCHAR}"%"
  1236. </if>
  1237. <if test="transferMode != null">
  1238. and a.transfer_mode = #{transferMode,jdbcType=INTEGER}
  1239. </if>
  1240. <if test="upperPrice != null and upperPrice != ''">
  1241. and a.transfer_price &lt; #{upperPrice,jdbcType=VARCHAR}
  1242. </if>
  1243. <if test="lowerPrice != null and lowerPrice != ''">
  1244. and a.transfer_price &gt; #{lowerPrice,jdbcType=VARCHAR}
  1245. </if>
  1246. <if test="internationalFlag != null ">
  1247. and a.international_flag = #{internationalFlag,jdbcType=INTEGER}
  1248. </if>
  1249. and a.release_status = 1
  1250. and a.audit_status = 3
  1251. <if test="dateSort == 0">
  1252. order by a.release_date asc
  1253. </if>
  1254. <if test="dateSort == 1">
  1255. order by a.release_date desc
  1256. </if>
  1257. </select>
  1258. <select id="selectAchievementSearchDetail" resultType="com.goafanti.portal.bo.AchievementDetailBo">
  1259. select
  1260. a.id,
  1261. a.owner_name as ownerName,
  1262. a.serial_number as serialNumber,
  1263. a.keyword,
  1264. a.name,
  1265. a.data_category as dataCategory,
  1266. a.category,
  1267. ui.username,
  1268. oi.unit_name as unitName,
  1269. a.release_date as releaseDate,
  1270. a.owner_type as ownerType,
  1271. a.field_a as fieldA,
  1272. a.field_b as fieldB,
  1273. a.transfer_price as transferPrice,
  1274. a.maturity,
  1275. a.transfer_mode as transferMode,
  1276. a.bargaining_mode as bargainingMode,
  1277. a.summary,
  1278. a.introduction,
  1279. a.technical_picture_url as technicalPictureUrl,
  1280. a.maturity_picture_url as maturityPictureUrl,
  1281. a.maturity_text_file_url as maturityTextFileUrl,
  1282. a.maturity_video_url as maturityVideoUrl,
  1283. a.innovation,
  1284. a.cooperation_mode as cooperationMode,
  1285. a.bargaining_mode as bargainingMode,
  1286. a.technical_scene as technicalScene,
  1287. a.breakthrough,
  1288. a.patent_case as patentCase,
  1289. a.awards,
  1290. a.team_des as teamDes,
  1291. a.parameter,
  1292. a.tech_plan_url as techPlanUrl,
  1293. a.business_plan_url as businessPlanUrl,
  1294. ai.id as achievementInterestId,
  1295. ao.id as achievementOrderId,
  1296. ao.status as orderStatus
  1297. from achievement a
  1298. left join user_identity ui on ui.uid = a.owner_id
  1299. left join organization_identity oi on oi.uid = a.owner_id
  1300. left join achievement_interest ai on ai.achievement_id = a.id and ai.uid = #{0}
  1301. left join achievement_order ao on ao.achievement_id = a.id and ao.uid = #{0} and ao.status <![CDATA[ <> ]]> 6
  1302. where a.id = #{1}
  1303. </select>
  1304. <select id="findAchievementNumByUid" parameterType="java.lang.String" resultType="java.lang.Integer">
  1305. select
  1306. count(1)
  1307. from achievement
  1308. where
  1309. deleted_sign = 0
  1310. and release_status = 1
  1311. and audit_status = 3
  1312. and owner_id = #{uid,jdbcType=VARCHAR}
  1313. </select>
  1314. <select id="findPartnerAchievementListByPage" parameterType="java.lang.String" resultType="com.goafanti.achievement.bo.AchievementPartnerListBo">
  1315. SELECT
  1316. id,
  1317. serial_number AS serialNumber,
  1318. data_category AS dataCategory,
  1319. NAME,
  1320. keyword,
  1321. category,
  1322. owner_type as ownerType,
  1323. release_date AS releaseDate,
  1324. field_a as fieldA,
  1325. maturity,
  1326. introduction,
  1327. technical_picture_url as technicalPictureUrl,
  1328. bargaining_mode as bargainingMode,
  1329. transfer_price as transferPrice
  1330. FROM
  1331. achievement
  1332. WHERE
  1333. audit_status = 3
  1334. AND release_status = 1
  1335. AND deleted_sign = 0
  1336. AND owner_id = #{ownerId,jdbcType=VARCHAR}
  1337. </select>
  1338. <select id="findPartnerAchievementCount" parameterType="java.lang.String" resultType="java.lang.Integer">
  1339. SELECT
  1340. count(1)
  1341. FROM
  1342. achievement
  1343. WHERE
  1344. audit_status = 3
  1345. AND release_status = 1
  1346. AND deleted_sign = 0
  1347. AND owner_id = #{ownerId,jdbcType=VARCHAR}
  1348. </select>
  1349. <select id="findUserPortalAchievementDetail" parameterType="java.lang.String" resultType="com.goafanti.portal.bo.AchievementPortalDetailBo">
  1350. SELECT
  1351. a.id,
  1352. a.name,
  1353. a.keyword,
  1354. a.category,
  1355. a.introduction,
  1356. a.maturity,
  1357. a.transfer_price AS transferPrice,
  1358. a.patent_case AS patentCase,
  1359. a.field_a as fieldA,
  1360. fg.name AS fieldAS,
  1361. fgg.name AS fieldBS,
  1362. a.release_date AS releaseDate,
  1363. dg.name as province,
  1364. dgg.name as city,
  1365. a.technical_picture_url AS technicalPictureUrl,
  1366. a.transfer_mode as transferMode,
  1367. interest.id as interestId,
  1368. u.lvl as level,
  1369. a.owner_name as ownerName,
  1370. a.owner_mobile as ownerMobile,
  1371. a.bargaining_mode as bargainingMode,
  1372. ui.city as location
  1373. FROM
  1374. achievement a
  1375. LEFT JOIN <![CDATA[ user ]]> u on u.id = a.owner_id
  1376. LEFT JOIN user_identity ui on ui.uid = a.owner_id
  1377. LEFT JOIN district_glossory dg on dg.id = ui.province
  1378. LEFT JOIN district_glossory dgg on dgg.id = ui.city
  1379. LEFT JOIN field_glossory fg on fg.id = a.field_a
  1380. LEFT JOIN field_glossory fgg on fgg.id = a.field_b
  1381. LEFT JOIN achievement_interest interest on interest.achievement_id = a.id and interest.uid = #{uid,jdbcType=VARCHAR}
  1382. WHERE
  1383. a.id = #{id,jdbcType=VARCHAR}
  1384. </select>
  1385. <select id="findOrgPortalAchievementDetail" parameterType="java.lang.String" resultType="com.goafanti.portal.bo.AchievementPortalDetailBo">
  1386. SELECT
  1387. a.id,
  1388. a.name,
  1389. a.keyword,
  1390. a.category,
  1391. a.introduction,
  1392. a.maturity,
  1393. a.transfer_price AS transferPrice,
  1394. a.patent_case AS patentCase,
  1395. a.field_a as fieldA,
  1396. fg.name AS fieldAS,
  1397. fgg.name AS fieldBS,
  1398. a.release_date AS releaseDate,
  1399. dg.name as province,
  1400. dgg.name as city,
  1401. a.technical_picture_url AS technicalPictureUrl,
  1402. a.transfer_mode as transferMode,
  1403. interest.id as interestId,
  1404. u.lvl as level,
  1405. a.owner_name as ownerName,
  1406. a.bargaining_mode as bargainingMode
  1407. FROM
  1408. achievement a
  1409. LEFT JOIN <![CDATA[ user ]]> u on u.id = a.owner_id
  1410. LEFT JOIN organization_identity oi on oi.uid = a.owner_id
  1411. LEFT JOIN district_glossory dg on dg.id = oi.licence_province
  1412. LEFT JOIN district_glossory dgg on dgg.id = oi.licence_city
  1413. LEFT JOIN field_glossory fg on fg.id = a.field_a
  1414. LEFT JOIN field_glossory fgg on fgg.id = a.field_b
  1415. LEFT JOIN achievement_interest interest on interest.achievement_id = a.id and interest.uid = #{uid,jdbcType=VARCHAR}
  1416. WHERE
  1417. a.id = #{id,jdbcType=VARCHAR}
  1418. </select>
  1419. <select id="findUserPortalSimilarByFieldA" resultType="com.goafanti.portal.bo.AchievementPortalSimilarListBo">
  1420. SELECT
  1421. a.id,
  1422. a.name,
  1423. a.maturity,
  1424. dg.name as uprovince,
  1425. dgg.name as ucity,
  1426. dggg.name as oprovince,
  1427. dgggg.name as ocity,
  1428. a.transfer_price as transferPrice,
  1429. a.bargaining_mode as bargainingMode
  1430. FROM
  1431. achievement a
  1432. LEFT JOIN user_identity ui ON ui.uid = a.owner_id
  1433. LEFT JOIN organization_identity oi on oi.uid = a.owner_id
  1434. LEFT JOIN district_glossory dg on dg.id = ui.province
  1435. LEFT JOIN district_glossory dgg on dgg.id = ui.city
  1436. LEFT JOIN district_glossory dggg on dggg.id = oi.licence_province
  1437. LEFT JOIN district_glossory dgggg on dgggg.id = oi.licence_city
  1438. WHERE
  1439. a.audit_status = 3
  1440. AND a.deleted_sign = 0
  1441. AND a.release_status = 1
  1442. AND a.field_a = #{fieldA,jdbcType=INTEGER}
  1443. AND a.id <![CDATA[ <> ]]> #{id,jdbcType=VARCHAR}
  1444. order by a.serial_number desc
  1445. limit 5
  1446. </select>
  1447. <select id="findOrgPortalSimilarByFieldA" resultType="com.goafanti.portal.bo.AchievementPortalSimilarListBo">
  1448. SELECT
  1449. a.id,
  1450. a.name,
  1451. a.maturity,
  1452. dg.name as oprovince,
  1453. dgg.name as ocity,
  1454. dggg.name as uprovince,
  1455. dgggg.name as ucity,
  1456. a.transfer_price as transferPrice,
  1457. a.bargaining_mode as bargainingMode
  1458. FROM
  1459. achievement a
  1460. LEFT JOIN organization_identity oi ON oi.uid = a.owner_id
  1461. LEFT JOIN user_identity ui ON ui.uid = a.owner_id
  1462. LEFT JOIN district_glossory dg on dg.id = oi.licence_province
  1463. LEFT JOIN district_glossory dgg on dgg.id = oi.licence_city
  1464. LEFT JOIN district_glossory dggg on dggg.id = ui.province
  1465. LEFT JOIN district_glossory dgggg on dgggg.id = ui.city
  1466. WHERE
  1467. a.audit_status = 3
  1468. AND a.deleted_sign = 0
  1469. AND a.release_status = 1
  1470. AND a.field_a = #{fieldA,jdbcType=INTEGER}
  1471. AND a.id <![CDATA[ <> ]]> #{id,jdbcType=VARCHAR}
  1472. order by a.serial_number desc
  1473. limit 5
  1474. </select>
  1475. <update id="updateOwnerId" parameterType="java.lang.String" >
  1476. update achievement
  1477. set owner_id = null
  1478. where id = #{id,jdbcType=VARCHAR}
  1479. </update>
  1480. <select id="selectInternationalAchievement" resultType="com.goafanti.portal.bo.InternationalListBo">
  1481. select
  1482. a.id as id,
  1483. a.name as techName,
  1484. a.introduction,
  1485. a.owner_name as ownerName,
  1486. a.owner_type as ownerType,
  1487. a.technical_picture_url as technicalPictureUrl,
  1488. a.country_name_zh as countryNameZh
  1489. from
  1490. achievement a
  1491. where
  1492. a.deleted_sign = 0 and a.data_category = 1
  1493. <!-- and a.release_status = 1 and nternational_flag = 1 -->
  1494. order by
  1495. a.release_date desc
  1496. limit 0,5
  1497. </select>
  1498. <select id="selectJmrhAchievement" resultType="com.goafanti.residentIntegration.bo.ResidentIntegrationBo">
  1499. select
  1500. id, name, owner_type as ownerType
  1501. from
  1502. achievement t
  1503. where
  1504. jmrh_flag = 1 and data_category = 0 and audit_status = 3
  1505. order by
  1506. create_time desc
  1507. limit 5;
  1508. </select>
  1509. <select id="selectJmrTechnology" resultType="com.goafanti.residentIntegration.bo.ResidentIntegrationBo">
  1510. select
  1511. id, name, maturity, owner_type as ownerType
  1512. from
  1513. achievement t
  1514. where
  1515. jmrh_flag = 1 and data_category = 1 and audit_status = 3
  1516. order by
  1517. create_time desc
  1518. limit 5;
  1519. </select>
  1520. <select id="selectJmrProject" resultType="com.goafanti.residentIntegration.bo.ResidentIntegrationBo">
  1521. select
  1522. a.id, a.name, c.residence_city as residenceCity,d.name as industry, owner_type as ownerType
  1523. from
  1524. achievement a
  1525. left join
  1526. user b on a.owner_id = b.id
  1527. left join
  1528. user_info c on b.id = c.uid
  1529. left join
  1530. field_glossory d on a.field_a = d.id
  1531. where
  1532. jmrh_flag = 1 and data_category = 1 and audit_status = 3
  1533. order by
  1534. a.create_time asc
  1535. limit 5;
  1536. </select>
  1537. <select id="findBoutiqueListByPage" parameterType="java.lang.String" resultType="com.goafanti.portal.bo.BoutiqueListBo">
  1538. select
  1539. a.id ,
  1540. a.name,
  1541. a.transfer_price as price,
  1542. a.summary as sketch,
  1543. a.technical_picture_url as pictureUrl,
  1544. a.owner_type as ownerType,
  1545. b.name as industryCatalog,
  1546. a.owner_name as personName
  1547. from
  1548. achievement a
  1549. left join
  1550. field_glossory b
  1551. on
  1552. a.field_a = b.id
  1553. where
  1554. a.boutique = 1 and a.audit_status = 3 and a.deleted_sign=0
  1555. <if test="fieldA != null and fieldA != ''">
  1556. and a.field_a = #{fieldA,jdbcType=INTEGER}
  1557. </if>
  1558. <if test="dataCategory != null and dataCategory != ''">
  1559. and data_category = #{dataCategory,jdbcType=INTEGER}
  1560. </if>
  1561. <if test="category != null and category != ''">
  1562. and category = #{category,jdbcType=INTEGER}
  1563. </if>
  1564. order by a.create_time desc
  1565. <if test="page_sql!=null">
  1566. ${page_sql}
  1567. </if>
  1568. </select>
  1569. <select id="findBoutiqueCount" parameterType="java.lang.String" resultType="java.lang.Integer">
  1570. select
  1571. count(0)
  1572. from
  1573. achievement a
  1574. left join
  1575. field_glossory b
  1576. on
  1577. a.field_a = b.id
  1578. where
  1579. a.boutique = 1 and a.audit_status = 3 and a.deleted_sign=0
  1580. <if test="fieldA != null and fieldA != ''">
  1581. and a.field_a = #{fieldA,jdbcType=INTEGER}
  1582. </if>
  1583. <if test="dataCategory != null and dataCategory != ''">
  1584. and data_category = #{dataCategory,jdbcType=INTEGER}
  1585. </if>
  1586. <if test="category != null and category != ''">
  1587. and category = #{category,jdbcType=INTEGER}
  1588. </if>
  1589. </select>
  1590. <select id="listAchievement" resultType="com.goafanti.achievement.bo.AchievementListBo">
  1591. select
  1592. a.id, a.name, a.keyword,a.introduction,a.category,
  1593. a.serial_number as serialNumber,
  1594. a.data_category as dataCategory,
  1595. a.owner_type as ownerType,
  1596. a.owner_name as ownerName,
  1597. a.field_a as fieldA,
  1598. a.transfer_price as transferPrice,
  1599. a.transfer_mode as transfermode,
  1600. a.maturity,
  1601. a.technical_picture_url as technicalpictureurl
  1602. from achievement a
  1603. where
  1604. a.deleted_sign = 0
  1605. and a.category = 0
  1606. and a.release_status = 1
  1607. and a.audit_status = 3
  1608. order by a.release_date desc limit 0,12
  1609. </select>
  1610. <!-- 查询猜你喜欢 -->
  1611. <select id="selectCsutomerLike" resultType="com.goafanti.achievement.bo.AchievementListBo">
  1612. select
  1613. a.id, a.name, a.keyword,a.introduction,a.category,
  1614. a.serial_number as serialNumber,
  1615. a.data_category as dataCategory,
  1616. a.owner_type as ownerType,
  1617. a.owner_name as ownerName,
  1618. a.field_a as fieldA,
  1619. a.field_b as fieldB,
  1620. a.transfer_price as transferPrice,
  1621. a.technical_picture_url as technicalpictureurl
  1622. from achievement a
  1623. LEFT JOIN aft.achievement_interest b on a.id = b.achievement_id
  1624. where
  1625. a.deleted_sign = 0
  1626. and category = 0
  1627. and a.release_status = 1
  1628. and a.audit_status = 3
  1629. <if test="boutique != null">
  1630. and a.boutique= #{boutique,jdbcType=INTEGER}
  1631. </if>
  1632. order by a.release_date desc limit 0,4
  1633. </select>
  1634. </mapper>