ShykMeetinguserMapper.xml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  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.ghsc.partybuild.mapper.ShykMeetinguserMapper">
  4. <resultMap id="BaseResultMap" type="com.ghsc.partybuild.model.ShykMeetinguser">
  5. <id column="MEETINGUSERID" jdbcType="VARCHAR" property="meetinguserid" />
  6. <result column="MEETINGID" jdbcType="VARCHAR" property="meetingid" />
  7. <result column="USERNAME" jdbcType="VARCHAR" property="username" />
  8. <result column="USERCODE" jdbcType="VARCHAR" property="usercode" />
  9. <result column="PARTYNAME" jdbcType="VARCHAR" property="partyname" />
  10. <result column="PARTYCODE" jdbcType="VARCHAR" property="partycode" />
  11. <result column="SIGNINSTATUS" jdbcType="DECIMAL" property="signinstatus" />
  12. <result column="SIGNINUSERCODE" jdbcType="VARCHAR" property="signinusercode" />
  13. <result column="SIGNINUSERNAME" jdbcType="VARCHAR" property="signinusername" />
  14. <result column="SIGNINTIME" jdbcType="TIMESTAMP" property="signintime" />
  15. <result column="CHECKINSTATUS" jdbcType="DECIMAL" property="checkinstatus" />
  16. <result column="CHECKINUSERCODE" jdbcType="VARCHAR" property="checkinusercode" />
  17. <result column="CHECKINUSERNAME" jdbcType="VARCHAR" property="checkinusername" />
  18. <result column="CHECKINTIME" jdbcType="TIMESTAMP" property="checkintime" />
  19. <result column="USERREMARK" jdbcType="VARCHAR" property="userremark" />
  20. <result column="APPROVESTATUS" jdbcType="DECIMAL" property="approvestatus" />
  21. <result column="APPROVEOPINION" jdbcType="VARCHAR" property="approveopinion" />
  22. <result column="APPROVEUSERCODE" jdbcType="VARCHAR" property="approveusercode" />
  23. <result column="APPROVEUSERNAME" jdbcType="VARCHAR" property="approveusername" />
  24. <result column="MAKEUUPSTUDY" jdbcType="VARCHAR" property="makeuupstudy" />
  25. <result column="OPERATETIME" jdbcType="TIMESTAMP" property="operatetime" />
  26. <result column="OPERATESTATE" jdbcType="VARCHAR" property="operatestate" />
  27. <result column="SYNCSTATE" jdbcType="VARCHAR" property="syncstate" />
  28. </resultMap>
  29. <sql id="Example_Where_Clause">
  30. <where>
  31. <foreach collection="oredCriteria" item="criteria" separator="or">
  32. <if test="criteria.valid">
  33. <trim prefix="(" prefixOverrides="and" suffix=")">
  34. <foreach collection="criteria.criteria" item="criterion">
  35. <choose>
  36. <when test="criterion.noValue">
  37. and ${criterion.condition}
  38. </when>
  39. <when test="criterion.singleValue">
  40. and ${criterion.condition} #{criterion.value}
  41. </when>
  42. <when test="criterion.betweenValue">
  43. and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
  44. </when>
  45. <when test="criterion.listValue">
  46. and ${criterion.condition}
  47. <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
  48. #{listItem}
  49. </foreach>
  50. </when>
  51. </choose>
  52. </foreach>
  53. </trim>
  54. </if>
  55. </foreach>
  56. </where>
  57. </sql>
  58. <sql id="Update_By_Example_Where_Clause">
  59. <where>
  60. <foreach collection="example.oredCriteria" item="criteria" separator="or">
  61. <if test="criteria.valid">
  62. <trim prefix="(" prefixOverrides="and" suffix=")">
  63. <foreach collection="criteria.criteria" item="criterion">
  64. <choose>
  65. <when test="criterion.noValue">
  66. and ${criterion.condition}
  67. </when>
  68. <when test="criterion.singleValue">
  69. and ${criterion.condition} #{criterion.value}
  70. </when>
  71. <when test="criterion.betweenValue">
  72. and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
  73. </when>
  74. <when test="criterion.listValue">
  75. and ${criterion.condition}
  76. <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
  77. #{listItem}
  78. </foreach>
  79. </when>
  80. </choose>
  81. </foreach>
  82. </trim>
  83. </if>
  84. </foreach>
  85. </where>
  86. </sql>
  87. <sql id="Base_Column_List">
  88. MEETINGUSERID, MEETINGID, USERNAME, USERCODE, PARTYNAME, PARTYCODE, SIGNINSTATUS,
  89. SIGNINUSERCODE, SIGNINUSERNAME, SIGNINTIME, CHECKINSTATUS, CHECKINUSERCODE, CHECKINUSERNAME,
  90. CHECKINTIME, USERREMARK, APPROVESTATUS, APPROVEOPINION, APPROVEUSERCODE, APPROVEUSERNAME,
  91. MAKEUUPSTUDY, OPERATETIME, OPERATESTATE, SYNCSTATE
  92. </sql>
  93. <select id="selectByExample" parameterType="com.ghsc.partybuild.model.ShykMeetinguserExample" resultMap="BaseResultMap">
  94. select
  95. <if test="distinct">
  96. distinct
  97. </if>
  98. <include refid="Base_Column_List" />
  99. from shyk_meetinguser
  100. <if test="_parameter != null">
  101. <include refid="Example_Where_Clause" />
  102. </if>
  103. <if test="orderByClause != null">
  104. order by ${orderByClause}
  105. </if>
  106. </select>
  107. <select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
  108. select
  109. <include refid="Base_Column_List" />
  110. from shyk_meetinguser
  111. where MEETINGUSERID = #{meetinguserid,jdbcType=VARCHAR}
  112. </select>
  113. <delete id="deleteByPrimaryKey" parameterType="java.lang.String">
  114. delete from shyk_meetinguser
  115. where MEETINGUSERID = #{meetinguserid,jdbcType=VARCHAR}
  116. </delete>
  117. <delete id="deleteByExample" parameterType="com.ghsc.partybuild.model.ShykMeetinguserExample">
  118. delete from shyk_meetinguser
  119. <if test="_parameter != null">
  120. <include refid="Example_Where_Clause" />
  121. </if>
  122. </delete>
  123. <insert id="insert" parameterType="com.ghsc.partybuild.model.ShykMeetinguser">
  124. insert into shyk_meetinguser (MEETINGUSERID, MEETINGID, USERNAME,
  125. USERCODE, PARTYNAME, PARTYCODE,
  126. SIGNINSTATUS, SIGNINUSERCODE, SIGNINUSERNAME,
  127. SIGNINTIME, CHECKINSTATUS, CHECKINUSERCODE,
  128. CHECKINUSERNAME, CHECKINTIME, USERREMARK,
  129. APPROVESTATUS, APPROVEOPINION, APPROVEUSERCODE,
  130. APPROVEUSERNAME, MAKEUUPSTUDY, OPERATETIME,
  131. OPERATESTATE, SYNCSTATE)
  132. values (#{meetinguserid,jdbcType=VARCHAR}, #{meetingid,jdbcType=VARCHAR}, #{username,jdbcType=VARCHAR},
  133. #{usercode,jdbcType=VARCHAR}, #{partyname,jdbcType=VARCHAR}, #{partycode,jdbcType=VARCHAR},
  134. #{signinstatus,jdbcType=DECIMAL}, #{signinusercode,jdbcType=VARCHAR}, #{signinusername,jdbcType=VARCHAR},
  135. #{signintime,jdbcType=TIMESTAMP}, #{checkinstatus,jdbcType=DECIMAL}, #{checkinusercode,jdbcType=VARCHAR},
  136. #{checkinusername,jdbcType=VARCHAR}, #{checkintime,jdbcType=TIMESTAMP}, #{userremark,jdbcType=VARCHAR},
  137. #{approvestatus,jdbcType=DECIMAL}, #{approveopinion,jdbcType=VARCHAR}, #{approveusercode,jdbcType=VARCHAR},
  138. #{approveusername,jdbcType=VARCHAR}, #{makeuupstudy,jdbcType=VARCHAR}, #{operatetime,jdbcType=TIMESTAMP},
  139. #{operatestate,jdbcType=VARCHAR}, #{syncstate,jdbcType=VARCHAR})
  140. </insert>
  141. <insert id="insertSelective" parameterType="com.ghsc.partybuild.model.ShykMeetinguser">
  142. insert into shyk_meetinguser
  143. <trim prefix="(" suffix=")" suffixOverrides=",">
  144. <if test="meetinguserid != null">
  145. MEETINGUSERID,
  146. </if>
  147. <if test="meetingid != null">
  148. MEETINGID,
  149. </if>
  150. <if test="username != null">
  151. USERNAME,
  152. </if>
  153. <if test="usercode != null">
  154. USERCODE,
  155. </if>
  156. <if test="partyname != null">
  157. PARTYNAME,
  158. </if>
  159. <if test="partycode != null">
  160. PARTYCODE,
  161. </if>
  162. <if test="signinstatus != null">
  163. SIGNINSTATUS,
  164. </if>
  165. <if test="signinusercode != null">
  166. SIGNINUSERCODE,
  167. </if>
  168. <if test="signinusername != null">
  169. SIGNINUSERNAME,
  170. </if>
  171. <if test="signintime != null">
  172. SIGNINTIME,
  173. </if>
  174. <if test="checkinstatus != null">
  175. CHECKINSTATUS,
  176. </if>
  177. <if test="checkinusercode != null">
  178. CHECKINUSERCODE,
  179. </if>
  180. <if test="checkinusername != null">
  181. CHECKINUSERNAME,
  182. </if>
  183. <if test="checkintime != null">
  184. CHECKINTIME,
  185. </if>
  186. <if test="userremark != null">
  187. USERREMARK,
  188. </if>
  189. <if test="approvestatus != null">
  190. APPROVESTATUS,
  191. </if>
  192. <if test="approveopinion != null">
  193. APPROVEOPINION,
  194. </if>
  195. <if test="approveusercode != null">
  196. APPROVEUSERCODE,
  197. </if>
  198. <if test="approveusername != null">
  199. APPROVEUSERNAME,
  200. </if>
  201. <if test="makeuupstudy != null">
  202. MAKEUUPSTUDY,
  203. </if>
  204. <if test="operatetime != null">
  205. OPERATETIME,
  206. </if>
  207. <if test="operatestate != null">
  208. OPERATESTATE,
  209. </if>
  210. <if test="syncstate != null">
  211. SYNCSTATE,
  212. </if>
  213. </trim>
  214. <trim prefix="values (" suffix=")" suffixOverrides=",">
  215. <if test="meetinguserid != null">
  216. #{meetinguserid,jdbcType=VARCHAR},
  217. </if>
  218. <if test="meetingid != null">
  219. #{meetingid,jdbcType=VARCHAR},
  220. </if>
  221. <if test="username != null">
  222. #{username,jdbcType=VARCHAR},
  223. </if>
  224. <if test="usercode != null">
  225. #{usercode,jdbcType=VARCHAR},
  226. </if>
  227. <if test="partyname != null">
  228. #{partyname,jdbcType=VARCHAR},
  229. </if>
  230. <if test="partycode != null">
  231. #{partycode,jdbcType=VARCHAR},
  232. </if>
  233. <if test="signinstatus != null">
  234. #{signinstatus,jdbcType=DECIMAL},
  235. </if>
  236. <if test="signinusercode != null">
  237. #{signinusercode,jdbcType=VARCHAR},
  238. </if>
  239. <if test="signinusername != null">
  240. #{signinusername,jdbcType=VARCHAR},
  241. </if>
  242. <if test="signintime != null">
  243. #{signintime,jdbcType=TIMESTAMP},
  244. </if>
  245. <if test="checkinstatus != null">
  246. #{checkinstatus,jdbcType=DECIMAL},
  247. </if>
  248. <if test="checkinusercode != null">
  249. #{checkinusercode,jdbcType=VARCHAR},
  250. </if>
  251. <if test="checkinusername != null">
  252. #{checkinusername,jdbcType=VARCHAR},
  253. </if>
  254. <if test="checkintime != null">
  255. #{checkintime,jdbcType=TIMESTAMP},
  256. </if>
  257. <if test="userremark != null">
  258. #{userremark,jdbcType=VARCHAR},
  259. </if>
  260. <if test="approvestatus != null">
  261. #{approvestatus,jdbcType=DECIMAL},
  262. </if>
  263. <if test="approveopinion != null">
  264. #{approveopinion,jdbcType=VARCHAR},
  265. </if>
  266. <if test="approveusercode != null">
  267. #{approveusercode,jdbcType=VARCHAR},
  268. </if>
  269. <if test="approveusername != null">
  270. #{approveusername,jdbcType=VARCHAR},
  271. </if>
  272. <if test="makeuupstudy != null">
  273. #{makeuupstudy,jdbcType=VARCHAR},
  274. </if>
  275. <if test="operatetime != null">
  276. #{operatetime,jdbcType=TIMESTAMP},
  277. </if>
  278. <if test="operatestate != null">
  279. #{operatestate,jdbcType=VARCHAR},
  280. </if>
  281. <if test="syncstate != null">
  282. #{syncstate,jdbcType=VARCHAR},
  283. </if>
  284. </trim>
  285. </insert>
  286. <select id="countByExample" parameterType="com.ghsc.partybuild.model.ShykMeetinguserExample" resultType="java.lang.Long">
  287. select count(*) from shyk_meetinguser
  288. <if test="_parameter != null">
  289. <include refid="Example_Where_Clause" />
  290. </if>
  291. </select>
  292. <update id="updateByExampleSelective" parameterType="map">
  293. update shyk_meetinguser
  294. <set>
  295. <if test="record.meetinguserid != null">
  296. MEETINGUSERID = #{record.meetinguserid,jdbcType=VARCHAR},
  297. </if>
  298. <if test="record.meetingid != null">
  299. MEETINGID = #{record.meetingid,jdbcType=VARCHAR},
  300. </if>
  301. <if test="record.username != null">
  302. USERNAME = #{record.username,jdbcType=VARCHAR},
  303. </if>
  304. <if test="record.usercode != null">
  305. USERCODE = #{record.usercode,jdbcType=VARCHAR},
  306. </if>
  307. <if test="record.partyname != null">
  308. PARTYNAME = #{record.partyname,jdbcType=VARCHAR},
  309. </if>
  310. <if test="record.partycode != null">
  311. PARTYCODE = #{record.partycode,jdbcType=VARCHAR},
  312. </if>
  313. <if test="record.signinstatus != null">
  314. SIGNINSTATUS = #{record.signinstatus,jdbcType=DECIMAL},
  315. </if>
  316. <if test="record.signinusercode != null">
  317. SIGNINUSERCODE = #{record.signinusercode,jdbcType=VARCHAR},
  318. </if>
  319. <if test="record.signinusername != null">
  320. SIGNINUSERNAME = #{record.signinusername,jdbcType=VARCHAR},
  321. </if>
  322. <if test="record.signintime != null">
  323. SIGNINTIME = #{record.signintime,jdbcType=TIMESTAMP},
  324. </if>
  325. <if test="record.checkinstatus != null">
  326. CHECKINSTATUS = #{record.checkinstatus,jdbcType=DECIMAL},
  327. </if>
  328. <if test="record.checkinusercode != null">
  329. CHECKINUSERCODE = #{record.checkinusercode,jdbcType=VARCHAR},
  330. </if>
  331. <if test="record.checkinusername != null">
  332. CHECKINUSERNAME = #{record.checkinusername,jdbcType=VARCHAR},
  333. </if>
  334. <if test="record.checkintime != null">
  335. CHECKINTIME = #{record.checkintime,jdbcType=TIMESTAMP},
  336. </if>
  337. <if test="record.userremark != null">
  338. USERREMARK = #{record.userremark,jdbcType=VARCHAR},
  339. </if>
  340. <if test="record.approvestatus != null">
  341. APPROVESTATUS = #{record.approvestatus,jdbcType=DECIMAL},
  342. </if>
  343. <if test="record.approveopinion != null">
  344. APPROVEOPINION = #{record.approveopinion,jdbcType=VARCHAR},
  345. </if>
  346. <if test="record.approveusercode != null">
  347. APPROVEUSERCODE = #{record.approveusercode,jdbcType=VARCHAR},
  348. </if>
  349. <if test="record.approveusername != null">
  350. APPROVEUSERNAME = #{record.approveusername,jdbcType=VARCHAR},
  351. </if>
  352. <if test="record.makeuupstudy != null">
  353. MAKEUUPSTUDY = #{record.makeuupstudy,jdbcType=VARCHAR},
  354. </if>
  355. <if test="record.operatetime != null">
  356. OPERATETIME = #{record.operatetime,jdbcType=TIMESTAMP},
  357. </if>
  358. <if test="record.operatestate != null">
  359. OPERATESTATE = #{record.operatestate,jdbcType=VARCHAR},
  360. </if>
  361. <if test="record.syncstate != null">
  362. SYNCSTATE = #{record.syncstate,jdbcType=VARCHAR},
  363. </if>
  364. </set>
  365. <if test="_parameter != null">
  366. <include refid="Update_By_Example_Where_Clause" />
  367. </if>
  368. </update>
  369. <update id="updateByExample" parameterType="map">
  370. update shyk_meetinguser
  371. set MEETINGUSERID = #{record.meetinguserid,jdbcType=VARCHAR},
  372. MEETINGID = #{record.meetingid,jdbcType=VARCHAR},
  373. USERNAME = #{record.username,jdbcType=VARCHAR},
  374. USERCODE = #{record.usercode,jdbcType=VARCHAR},
  375. PARTYNAME = #{record.partyname,jdbcType=VARCHAR},
  376. PARTYCODE = #{record.partycode,jdbcType=VARCHAR},
  377. SIGNINSTATUS = #{record.signinstatus,jdbcType=DECIMAL},
  378. SIGNINUSERCODE = #{record.signinusercode,jdbcType=VARCHAR},
  379. SIGNINUSERNAME = #{record.signinusername,jdbcType=VARCHAR},
  380. SIGNINTIME = #{record.signintime,jdbcType=TIMESTAMP},
  381. CHECKINSTATUS = #{record.checkinstatus,jdbcType=DECIMAL},
  382. CHECKINUSERCODE = #{record.checkinusercode,jdbcType=VARCHAR},
  383. CHECKINUSERNAME = #{record.checkinusername,jdbcType=VARCHAR},
  384. CHECKINTIME = #{record.checkintime,jdbcType=TIMESTAMP},
  385. USERREMARK = #{record.userremark,jdbcType=VARCHAR},
  386. APPROVESTATUS = #{record.approvestatus,jdbcType=DECIMAL},
  387. APPROVEOPINION = #{record.approveopinion,jdbcType=VARCHAR},
  388. APPROVEUSERCODE = #{record.approveusercode,jdbcType=VARCHAR},
  389. APPROVEUSERNAME = #{record.approveusername,jdbcType=VARCHAR},
  390. MAKEUUPSTUDY = #{record.makeuupstudy,jdbcType=VARCHAR},
  391. OPERATETIME = #{record.operatetime,jdbcType=TIMESTAMP},
  392. OPERATESTATE = #{record.operatestate,jdbcType=VARCHAR},
  393. SYNCSTATE = #{record.syncstate,jdbcType=VARCHAR}
  394. <if test="_parameter != null">
  395. <include refid="Update_By_Example_Where_Clause" />
  396. </if>
  397. </update>
  398. <update id="updateByPrimaryKeySelective" parameterType="com.ghsc.partybuild.model.ShykMeetinguser">
  399. update shyk_meetinguser
  400. <set>
  401. <if test="meetingid != null">
  402. MEETINGID = #{meetingid,jdbcType=VARCHAR},
  403. </if>
  404. <if test="username != null">
  405. USERNAME = #{username,jdbcType=VARCHAR},
  406. </if>
  407. <if test="usercode != null">
  408. USERCODE = #{usercode,jdbcType=VARCHAR},
  409. </if>
  410. <if test="partyname != null">
  411. PARTYNAME = #{partyname,jdbcType=VARCHAR},
  412. </if>
  413. <if test="partycode != null">
  414. PARTYCODE = #{partycode,jdbcType=VARCHAR},
  415. </if>
  416. <if test="signinstatus != null">
  417. SIGNINSTATUS = #{signinstatus,jdbcType=DECIMAL},
  418. </if>
  419. <if test="signinusercode != null">
  420. SIGNINUSERCODE = #{signinusercode,jdbcType=VARCHAR},
  421. </if>
  422. <if test="signinusername != null">
  423. SIGNINUSERNAME = #{signinusername,jdbcType=VARCHAR},
  424. </if>
  425. <if test="signintime != null">
  426. SIGNINTIME = #{signintime,jdbcType=TIMESTAMP},
  427. </if>
  428. <if test="checkinstatus != null">
  429. CHECKINSTATUS = #{checkinstatus,jdbcType=DECIMAL},
  430. </if>
  431. <if test="checkinusercode != null">
  432. CHECKINUSERCODE = #{checkinusercode,jdbcType=VARCHAR},
  433. </if>
  434. <if test="checkinusername != null">
  435. CHECKINUSERNAME = #{checkinusername,jdbcType=VARCHAR},
  436. </if>
  437. <if test="checkintime != null">
  438. CHECKINTIME = #{checkintime,jdbcType=TIMESTAMP},
  439. </if>
  440. <if test="userremark != null">
  441. USERREMARK = #{userremark,jdbcType=VARCHAR},
  442. </if>
  443. <if test="approvestatus != null">
  444. APPROVESTATUS = #{approvestatus,jdbcType=DECIMAL},
  445. </if>
  446. <if test="approveopinion != null">
  447. APPROVEOPINION = #{approveopinion,jdbcType=VARCHAR},
  448. </if>
  449. <if test="approveusercode != null">
  450. APPROVEUSERCODE = #{approveusercode,jdbcType=VARCHAR},
  451. </if>
  452. <if test="approveusername != null">
  453. APPROVEUSERNAME = #{approveusername,jdbcType=VARCHAR},
  454. </if>
  455. <if test="makeuupstudy != null">
  456. MAKEUUPSTUDY = #{makeuupstudy,jdbcType=VARCHAR},
  457. </if>
  458. <if test="operatetime != null">
  459. OPERATETIME = #{operatetime,jdbcType=TIMESTAMP},
  460. </if>
  461. <if test="operatestate != null">
  462. OPERATESTATE = #{operatestate,jdbcType=VARCHAR},
  463. </if>
  464. <if test="syncstate != null">
  465. SYNCSTATE = #{syncstate,jdbcType=VARCHAR},
  466. </if>
  467. </set>
  468. where MEETINGUSERID = #{meetinguserid,jdbcType=VARCHAR}
  469. </update>
  470. <update id="updateByPrimaryKey" parameterType="com.ghsc.partybuild.model.ShykMeetinguser">
  471. update shyk_meetinguser
  472. set MEETINGID = #{meetingid,jdbcType=VARCHAR},
  473. USERNAME = #{username,jdbcType=VARCHAR},
  474. USERCODE = #{usercode,jdbcType=VARCHAR},
  475. PARTYNAME = #{partyname,jdbcType=VARCHAR},
  476. PARTYCODE = #{partycode,jdbcType=VARCHAR},
  477. SIGNINSTATUS = #{signinstatus,jdbcType=DECIMAL},
  478. SIGNINUSERCODE = #{signinusercode,jdbcType=VARCHAR},
  479. SIGNINUSERNAME = #{signinusername,jdbcType=VARCHAR},
  480. SIGNINTIME = #{signintime,jdbcType=TIMESTAMP},
  481. CHECKINSTATUS = #{checkinstatus,jdbcType=DECIMAL},
  482. CHECKINUSERCODE = #{checkinusercode,jdbcType=VARCHAR},
  483. CHECKINUSERNAME = #{checkinusername,jdbcType=VARCHAR},
  484. CHECKINTIME = #{checkintime,jdbcType=TIMESTAMP},
  485. USERREMARK = #{userremark,jdbcType=VARCHAR},
  486. APPROVESTATUS = #{approvestatus,jdbcType=DECIMAL},
  487. APPROVEOPINION = #{approveopinion,jdbcType=VARCHAR},
  488. APPROVEUSERCODE = #{approveusercode,jdbcType=VARCHAR},
  489. APPROVEUSERNAME = #{approveusername,jdbcType=VARCHAR},
  490. MAKEUUPSTUDY = #{makeuupstudy,jdbcType=VARCHAR},
  491. OPERATETIME = #{operatetime,jdbcType=TIMESTAMP},
  492. OPERATESTATE = #{operatestate,jdbcType=VARCHAR},
  493. SYNCSTATE = #{syncstate,jdbcType=VARCHAR}
  494. where MEETINGUSERID = #{meetinguserid,jdbcType=VARCHAR}
  495. </update>
  496. </mapper>