EmployeeMapper.xml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486
  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.xinxin.topro.base.sqlservermapper.EmployeeMapper" >
  4. <resultMap id="BaseResultMap" type="com.xinxin.topro.base.sqlservermodel.Employee" >
  5. <id column="EmpNo" property="empno" jdbcType="VARCHAR" />
  6. <result column="EmpCode" property="empcode" jdbcType="VARCHAR" />
  7. <result column="EmpName" property="empname" jdbcType="VARCHAR" />
  8. <result column="PhoneticName" property="phoneticname" jdbcType="VARCHAR" />
  9. <result column="EngName" property="engname" jdbcType="VARCHAR" />
  10. <result column="IdNo" property="idno" jdbcType="VARCHAR" />
  11. <result column="Sex" property="sex" jdbcType="VARCHAR" />
  12. <result column="Birthday" property="birthday" jdbcType="TIMESTAMP" />
  13. <result column="MobilePhone" property="mobilephone" jdbcType="VARCHAR" />
  14. <result column="Email" property="email" jdbcType="VARCHAR" />
  15. <result column="HireDate" property="hiredate" jdbcType="TIMESTAMP" />
  16. <result column="Zone" property="zone" jdbcType="VARCHAR" />
  17. <result column="DepartNo" property="departno" jdbcType="VARCHAR" />
  18. <result column="WorkDepartNo" property="workdepartno" jdbcType="VARCHAR" />
  19. <result column="EmpType" property="emptype" jdbcType="VARCHAR" />
  20. <result column="Title" property="title" jdbcType="SMALLINT" />
  21. <result column="ChiefNo" property="chiefno" jdbcType="SMALLINT" />
  22. <result column="SubTel" property="subtel" jdbcType="VARCHAR" />
  23. <result column="SimpleTel" property="simpletel" jdbcType="VARCHAR" />
  24. <result column="Password" property="password" jdbcType="VARCHAR" />
  25. <result column="PasswordTime" property="passwordtime" jdbcType="TIMESTAMP" />
  26. <result column="PressCard" property="presscard" jdbcType="INTEGER" />
  27. <result column="ResignDate" property="resigndate" jdbcType="TIMESTAMP" />
  28. <result column="UpdateUser" property="updateuser" jdbcType="VARCHAR" />
  29. <result column="UpdateTime" property="updatetime" jdbcType="TIMESTAMP" />
  30. <result column="Keyword1" property="keyword1" jdbcType="VARCHAR" />
  31. <result column="Keyword2" property="keyword2" jdbcType="VARCHAR" />
  32. <result column="Keyword3" property="keyword3" jdbcType="VARCHAR" />
  33. <result column="UserLevelId" property="userlevelid" jdbcType="VARCHAR" />
  34. <result column="InputCode" property="inputcode" jdbcType="VARCHAR" />
  35. </resultMap>
  36. <resultMap id="ResultMapWithBLOBs" type="com.xinxin.topro.base.sqlservermodel.EmployeeWithBLOBs" extends="BaseResultMap" >
  37. <result column="Remark" property="remark" jdbcType="LONGVARCHAR" />
  38. <result column="FingerTz1" property="fingertz1" jdbcType="LONGVARBINARY" />
  39. <result column="FingerTz2" property="fingertz2" jdbcType="LONGVARBINARY" />
  40. <result column="FingerTz3" property="fingertz3" jdbcType="LONGVARBINARY" />
  41. <result column="Signature" property="signature" jdbcType="LONGVARBINARY" />
  42. </resultMap>
  43. <sql id="Base_Column_List" >
  44. EmpNo, EmpCode, EmpName, PhoneticName, EngName, IdNo, Sex, Birthday, MobilePhone,
  45. Email, HireDate, Zone, DepartNo, WorkDepartNo, EmpType, Title, ChiefNo, SubTel, SimpleTel,
  46. Password, PasswordTime, PressCard, ResignDate, UpdateUser, UpdateTime, Keyword1,
  47. Keyword2, Keyword3, UserLevelId, InputCode
  48. </sql>
  49. <sql id="Blob_Column_List" >
  50. Remark, FingerTz1, FingerTz2, FingerTz3, Signature
  51. </sql>
  52. <select id="selectByPrimaryKey" resultMap="ResultMapWithBLOBs" parameterType="java.lang.String" >
  53. select
  54. <include refid="Base_Column_List" />
  55. ,
  56. <include refid="Blob_Column_List" />
  57. from Employee
  58. where EmpNo = #{empno,jdbcType=VARCHAR}
  59. </select>
  60. <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
  61. delete from Employee
  62. where EmpNo = #{empno,jdbcType=VARCHAR}
  63. </delete>
  64. <insert id="insert" parameterType="com.xinxin.topro.base.sqlservermodel.EmployeeWithBLOBs" >
  65. insert into Employee (EmpNo, EmpCode, EmpName,
  66. PhoneticName, EngName, IdNo,
  67. Sex, Birthday, MobilePhone,
  68. Email, HireDate, Zone,
  69. DepartNo, WorkDepartNo, EmpType,
  70. Title, ChiefNo, SubTel,
  71. SimpleTel, Password, PasswordTime,
  72. PressCard, ResignDate, UpdateUser,
  73. UpdateTime, Keyword1, Keyword2,
  74. Keyword3, UserLevelId, InputCode,
  75. Remark, FingerTz1, FingerTz2,
  76. FingerTz3, Signature)
  77. values (#{empno,jdbcType=VARCHAR}, #{empcode,jdbcType=VARCHAR}, #{empname,jdbcType=VARCHAR},
  78. #{phoneticname,jdbcType=VARCHAR}, #{engname,jdbcType=VARCHAR}, #{idno,jdbcType=VARCHAR},
  79. #{sex,jdbcType=VARCHAR}, #{birthday,jdbcType=TIMESTAMP}, #{mobilephone,jdbcType=VARCHAR},
  80. #{email,jdbcType=VARCHAR}, #{hiredate,jdbcType=TIMESTAMP}, #{zone,jdbcType=VARCHAR},
  81. #{departno,jdbcType=VARCHAR}, #{workdepartno,jdbcType=VARCHAR}, #{emptype,jdbcType=VARCHAR},
  82. #{title,jdbcType=SMALLINT}, #{chiefno,jdbcType=SMALLINT}, #{subtel,jdbcType=VARCHAR},
  83. #{simpletel,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR}, #{passwordtime,jdbcType=TIMESTAMP},
  84. #{presscard,jdbcType=INTEGER}, #{resigndate,jdbcType=TIMESTAMP}, #{updateuser,jdbcType=VARCHAR},
  85. #{updatetime,jdbcType=TIMESTAMP}, #{keyword1,jdbcType=VARCHAR}, #{keyword2,jdbcType=VARCHAR},
  86. #{keyword3,jdbcType=VARCHAR}, #{userlevelid,jdbcType=VARCHAR}, #{inputcode,jdbcType=VARCHAR},
  87. #{remark,jdbcType=LONGVARCHAR}, #{fingertz1,jdbcType=LONGVARBINARY}, #{fingertz2,jdbcType=LONGVARBINARY},
  88. #{fingertz3,jdbcType=LONGVARBINARY}, #{signature,jdbcType=LONGVARBINARY})
  89. </insert>
  90. <insert id="insertSelective" parameterType="com.xinxin.topro.base.sqlservermodel.EmployeeWithBLOBs" >
  91. insert into Employee
  92. <trim prefix="(" suffix=")" suffixOverrides="," >
  93. <if test="empno != null" >
  94. EmpNo,
  95. </if>
  96. <if test="empcode != null" >
  97. EmpCode,
  98. </if>
  99. <if test="empname != null" >
  100. EmpName,
  101. </if>
  102. <if test="phoneticname != null" >
  103. PhoneticName,
  104. </if>
  105. <if test="engname != null" >
  106. EngName,
  107. </if>
  108. <if test="idno != null" >
  109. IdNo,
  110. </if>
  111. <if test="sex != null" >
  112. Sex,
  113. </if>
  114. <if test="birthday != null" >
  115. Birthday,
  116. </if>
  117. <if test="mobilephone != null" >
  118. MobilePhone,
  119. </if>
  120. <if test="email != null" >
  121. Email,
  122. </if>
  123. <if test="hiredate != null" >
  124. HireDate,
  125. </if>
  126. <if test="zone != null" >
  127. Zone,
  128. </if>
  129. <if test="departno != null" >
  130. DepartNo,
  131. </if>
  132. <if test="workdepartno != null" >
  133. WorkDepartNo,
  134. </if>
  135. <if test="emptype != null" >
  136. EmpType,
  137. </if>
  138. <if test="title != null" >
  139. Title,
  140. </if>
  141. <if test="chiefno != null" >
  142. ChiefNo,
  143. </if>
  144. <if test="subtel != null" >
  145. SubTel,
  146. </if>
  147. <if test="simpletel != null" >
  148. SimpleTel,
  149. </if>
  150. <if test="password != null" >
  151. Password,
  152. </if>
  153. <if test="passwordtime != null" >
  154. PasswordTime,
  155. </if>
  156. <if test="presscard != null" >
  157. PressCard,
  158. </if>
  159. <if test="resigndate != null" >
  160. ResignDate,
  161. </if>
  162. <if test="updateuser != null" >
  163. UpdateUser,
  164. </if>
  165. <if test="updatetime != null" >
  166. UpdateTime,
  167. </if>
  168. <if test="keyword1 != null" >
  169. Keyword1,
  170. </if>
  171. <if test="keyword2 != null" >
  172. Keyword2,
  173. </if>
  174. <if test="keyword3 != null" >
  175. Keyword3,
  176. </if>
  177. <if test="userlevelid != null" >
  178. UserLevelId,
  179. </if>
  180. <if test="inputcode != null" >
  181. InputCode,
  182. </if>
  183. <if test="remark != null" >
  184. Remark,
  185. </if>
  186. <if test="fingertz1 != null" >
  187. FingerTz1,
  188. </if>
  189. <if test="fingertz2 != null" >
  190. FingerTz2,
  191. </if>
  192. <if test="fingertz3 != null" >
  193. FingerTz3,
  194. </if>
  195. <if test="signature != null" >
  196. Signature,
  197. </if>
  198. </trim>
  199. <trim prefix="values (" suffix=")" suffixOverrides="," >
  200. <if test="empno != null" >
  201. #{empno,jdbcType=VARCHAR},
  202. </if>
  203. <if test="empcode != null" >
  204. #{empcode,jdbcType=VARCHAR},
  205. </if>
  206. <if test="empname != null" >
  207. #{empname,jdbcType=VARCHAR},
  208. </if>
  209. <if test="phoneticname != null" >
  210. #{phoneticname,jdbcType=VARCHAR},
  211. </if>
  212. <if test="engname != null" >
  213. #{engname,jdbcType=VARCHAR},
  214. </if>
  215. <if test="idno != null" >
  216. #{idno,jdbcType=VARCHAR},
  217. </if>
  218. <if test="sex != null" >
  219. #{sex,jdbcType=VARCHAR},
  220. </if>
  221. <if test="birthday != null" >
  222. #{birthday,jdbcType=TIMESTAMP},
  223. </if>
  224. <if test="mobilephone != null" >
  225. #{mobilephone,jdbcType=VARCHAR},
  226. </if>
  227. <if test="email != null" >
  228. #{email,jdbcType=VARCHAR},
  229. </if>
  230. <if test="hiredate != null" >
  231. #{hiredate,jdbcType=TIMESTAMP},
  232. </if>
  233. <if test="zone != null" >
  234. #{zone,jdbcType=VARCHAR},
  235. </if>
  236. <if test="departno != null" >
  237. #{departno,jdbcType=VARCHAR},
  238. </if>
  239. <if test="workdepartno != null" >
  240. #{workdepartno,jdbcType=VARCHAR},
  241. </if>
  242. <if test="emptype != null" >
  243. #{emptype,jdbcType=VARCHAR},
  244. </if>
  245. <if test="title != null" >
  246. #{title,jdbcType=SMALLINT},
  247. </if>
  248. <if test="chiefno != null" >
  249. #{chiefno,jdbcType=SMALLINT},
  250. </if>
  251. <if test="subtel != null" >
  252. #{subtel,jdbcType=VARCHAR},
  253. </if>
  254. <if test="simpletel != null" >
  255. #{simpletel,jdbcType=VARCHAR},
  256. </if>
  257. <if test="password != null" >
  258. #{password,jdbcType=VARCHAR},
  259. </if>
  260. <if test="passwordtime != null" >
  261. #{passwordtime,jdbcType=TIMESTAMP},
  262. </if>
  263. <if test="presscard != null" >
  264. #{presscard,jdbcType=INTEGER},
  265. </if>
  266. <if test="resigndate != null" >
  267. #{resigndate,jdbcType=TIMESTAMP},
  268. </if>
  269. <if test="updateuser != null" >
  270. #{updateuser,jdbcType=VARCHAR},
  271. </if>
  272. <if test="updatetime != null" >
  273. #{updatetime,jdbcType=TIMESTAMP},
  274. </if>
  275. <if test="keyword1 != null" >
  276. #{keyword1,jdbcType=VARCHAR},
  277. </if>
  278. <if test="keyword2 != null" >
  279. #{keyword2,jdbcType=VARCHAR},
  280. </if>
  281. <if test="keyword3 != null" >
  282. #{keyword3,jdbcType=VARCHAR},
  283. </if>
  284. <if test="userlevelid != null" >
  285. #{userlevelid,jdbcType=VARCHAR},
  286. </if>
  287. <if test="inputcode != null" >
  288. #{inputcode,jdbcType=VARCHAR},
  289. </if>
  290. <if test="remark != null" >
  291. #{remark,jdbcType=LONGVARCHAR},
  292. </if>
  293. <if test="fingertz1 != null" >
  294. #{fingertz1,jdbcType=LONGVARBINARY},
  295. </if>
  296. <if test="fingertz2 != null" >
  297. #{fingertz2,jdbcType=LONGVARBINARY},
  298. </if>
  299. <if test="fingertz3 != null" >
  300. #{fingertz3,jdbcType=LONGVARBINARY},
  301. </if>
  302. <if test="signature != null" >
  303. #{signature,jdbcType=LONGVARBINARY},
  304. </if>
  305. </trim>
  306. </insert>
  307. <update id="updateByPrimaryKeySelective" parameterType="com.xinxin.topro.base.sqlservermodel.EmployeeWithBLOBs" >
  308. update Employee
  309. <set >
  310. <if test="empcode != null" >
  311. EmpCode = #{empcode,jdbcType=VARCHAR},
  312. </if>
  313. <if test="empname != null" >
  314. EmpName = #{empname,jdbcType=VARCHAR},
  315. </if>
  316. <if test="phoneticname != null" >
  317. PhoneticName = #{phoneticname,jdbcType=VARCHAR},
  318. </if>
  319. <if test="engname != null" >
  320. EngName = #{engname,jdbcType=VARCHAR},
  321. </if>
  322. <if test="idno != null" >
  323. IdNo = #{idno,jdbcType=VARCHAR},
  324. </if>
  325. <if test="sex != null" >
  326. Sex = #{sex,jdbcType=VARCHAR},
  327. </if>
  328. <if test="birthday != null" >
  329. Birthday = #{birthday,jdbcType=TIMESTAMP},
  330. </if>
  331. <if test="mobilephone != null" >
  332. MobilePhone = #{mobilephone,jdbcType=VARCHAR},
  333. </if>
  334. <if test="email != null" >
  335. Email = #{email,jdbcType=VARCHAR},
  336. </if>
  337. <if test="hiredate != null" >
  338. HireDate = #{hiredate,jdbcType=TIMESTAMP},
  339. </if>
  340. <if test="zone != null" >
  341. Zone = #{zone,jdbcType=VARCHAR},
  342. </if>
  343. <if test="departno != null" >
  344. DepartNo = #{departno,jdbcType=VARCHAR},
  345. </if>
  346. <if test="workdepartno != null" >
  347. WorkDepartNo = #{workdepartno,jdbcType=VARCHAR},
  348. </if>
  349. <if test="emptype != null" >
  350. EmpType = #{emptype,jdbcType=VARCHAR},
  351. </if>
  352. <if test="title != null" >
  353. Title = #{title,jdbcType=SMALLINT},
  354. </if>
  355. <if test="chiefno != null" >
  356. ChiefNo = #{chiefno,jdbcType=SMALLINT},
  357. </if>
  358. <if test="subtel != null" >
  359. SubTel = #{subtel,jdbcType=VARCHAR},
  360. </if>
  361. <if test="simpletel != null" >
  362. SimpleTel = #{simpletel,jdbcType=VARCHAR},
  363. </if>
  364. <if test="password != null" >
  365. Password = #{password,jdbcType=VARCHAR},
  366. </if>
  367. <if test="passwordtime != null" >
  368. PasswordTime = #{passwordtime,jdbcType=TIMESTAMP},
  369. </if>
  370. <if test="presscard != null" >
  371. PressCard = #{presscard,jdbcType=INTEGER},
  372. </if>
  373. <if test="resigndate != null" >
  374. ResignDate = #{resigndate,jdbcType=TIMESTAMP},
  375. </if>
  376. <if test="updateuser != null" >
  377. UpdateUser = #{updateuser,jdbcType=VARCHAR},
  378. </if>
  379. <if test="updatetime != null" >
  380. UpdateTime = #{updatetime,jdbcType=TIMESTAMP},
  381. </if>
  382. <if test="keyword1 != null" >
  383. Keyword1 = #{keyword1,jdbcType=VARCHAR},
  384. </if>
  385. <if test="keyword2 != null" >
  386. Keyword2 = #{keyword2,jdbcType=VARCHAR},
  387. </if>
  388. <if test="keyword3 != null" >
  389. Keyword3 = #{keyword3,jdbcType=VARCHAR},
  390. </if>
  391. <if test="userlevelid != null" >
  392. UserLevelId = #{userlevelid,jdbcType=VARCHAR},
  393. </if>
  394. <if test="inputcode != null" >
  395. InputCode = #{inputcode,jdbcType=VARCHAR},
  396. </if>
  397. <if test="remark != null" >
  398. Remark = #{remark,jdbcType=LONGVARCHAR},
  399. </if>
  400. <if test="fingertz1 != null" >
  401. FingerTz1 = #{fingertz1,jdbcType=LONGVARBINARY},
  402. </if>
  403. <if test="fingertz2 != null" >
  404. FingerTz2 = #{fingertz2,jdbcType=LONGVARBINARY},
  405. </if>
  406. <if test="fingertz3 != null" >
  407. FingerTz3 = #{fingertz3,jdbcType=LONGVARBINARY},
  408. </if>
  409. <if test="signature != null" >
  410. Signature = #{signature,jdbcType=LONGVARBINARY},
  411. </if>
  412. </set>
  413. where EmpNo = #{empno,jdbcType=VARCHAR}
  414. </update>
  415. <update id="updateByPrimaryKeyWithBLOBs" parameterType="com.xinxin.topro.base.sqlservermodel.EmployeeWithBLOBs" >
  416. update Employee
  417. set EmpCode = #{empcode,jdbcType=VARCHAR},
  418. EmpName = #{empname,jdbcType=VARCHAR},
  419. PhoneticName = #{phoneticname,jdbcType=VARCHAR},
  420. EngName = #{engname,jdbcType=VARCHAR},
  421. IdNo = #{idno,jdbcType=VARCHAR},
  422. Sex = #{sex,jdbcType=VARCHAR},
  423. Birthday = #{birthday,jdbcType=TIMESTAMP},
  424. MobilePhone = #{mobilephone,jdbcType=VARCHAR},
  425. Email = #{email,jdbcType=VARCHAR},
  426. HireDate = #{hiredate,jdbcType=TIMESTAMP},
  427. Zone = #{zone,jdbcType=VARCHAR},
  428. DepartNo = #{departno,jdbcType=VARCHAR},
  429. WorkDepartNo = #{workdepartno,jdbcType=VARCHAR},
  430. EmpType = #{emptype,jdbcType=VARCHAR},
  431. Title = #{title,jdbcType=SMALLINT},
  432. ChiefNo = #{chiefno,jdbcType=SMALLINT},
  433. SubTel = #{subtel,jdbcType=VARCHAR},
  434. SimpleTel = #{simpletel,jdbcType=VARCHAR},
  435. Password = #{password,jdbcType=VARCHAR},
  436. PasswordTime = #{passwordtime,jdbcType=TIMESTAMP},
  437. PressCard = #{presscard,jdbcType=INTEGER},
  438. ResignDate = #{resigndate,jdbcType=TIMESTAMP},
  439. UpdateUser = #{updateuser,jdbcType=VARCHAR},
  440. UpdateTime = #{updatetime,jdbcType=TIMESTAMP},
  441. Keyword1 = #{keyword1,jdbcType=VARCHAR},
  442. Keyword2 = #{keyword2,jdbcType=VARCHAR},
  443. Keyword3 = #{keyword3,jdbcType=VARCHAR},
  444. UserLevelId = #{userlevelid,jdbcType=VARCHAR},
  445. InputCode = #{inputcode,jdbcType=VARCHAR},
  446. Remark = #{remark,jdbcType=LONGVARCHAR},
  447. FingerTz1 = #{fingertz1,jdbcType=LONGVARBINARY},
  448. FingerTz2 = #{fingertz2,jdbcType=LONGVARBINARY},
  449. FingerTz3 = #{fingertz3,jdbcType=LONGVARBINARY},
  450. Signature = #{signature,jdbcType=LONGVARBINARY}
  451. where EmpNo = #{empno,jdbcType=VARCHAR}
  452. </update>
  453. <update id="updateByPrimaryKey" parameterType="com.xinxin.topro.base.sqlservermodel.Employee" >
  454. update Employee
  455. set EmpCode = #{empcode,jdbcType=VARCHAR},
  456. EmpName = #{empname,jdbcType=VARCHAR},
  457. PhoneticName = #{phoneticname,jdbcType=VARCHAR},
  458. EngName = #{engname,jdbcType=VARCHAR},
  459. IdNo = #{idno,jdbcType=VARCHAR},
  460. Sex = #{sex,jdbcType=VARCHAR},
  461. Birthday = #{birthday,jdbcType=TIMESTAMP},
  462. MobilePhone = #{mobilephone,jdbcType=VARCHAR},
  463. Email = #{email,jdbcType=VARCHAR},
  464. HireDate = #{hiredate,jdbcType=TIMESTAMP},
  465. Zone = #{zone,jdbcType=VARCHAR},
  466. DepartNo = #{departno,jdbcType=VARCHAR},
  467. WorkDepartNo = #{workdepartno,jdbcType=VARCHAR},
  468. EmpType = #{emptype,jdbcType=VARCHAR},
  469. Title = #{title,jdbcType=SMALLINT},
  470. ChiefNo = #{chiefno,jdbcType=SMALLINT},
  471. SubTel = #{subtel,jdbcType=VARCHAR},
  472. SimpleTel = #{simpletel,jdbcType=VARCHAR},
  473. Password = #{password,jdbcType=VARCHAR},
  474. PasswordTime = #{passwordtime,jdbcType=TIMESTAMP},
  475. PressCard = #{presscard,jdbcType=INTEGER},
  476. ResignDate = #{resigndate,jdbcType=TIMESTAMP},
  477. UpdateUser = #{updateuser,jdbcType=VARCHAR},
  478. UpdateTime = #{updatetime,jdbcType=TIMESTAMP},
  479. Keyword1 = #{keyword1,jdbcType=VARCHAR},
  480. Keyword2 = #{keyword2,jdbcType=VARCHAR},
  481. Keyword3 = #{keyword3,jdbcType=VARCHAR},
  482. UserLevelId = #{userlevelid,jdbcType=VARCHAR},
  483. InputCode = #{inputcode,jdbcType=VARCHAR}
  484. where EmpNo = #{empno,jdbcType=VARCHAR}
  485. </update>
  486. </mapper>