dp_sjlr_sy_SqlMap.xml 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN" "http://ibatis.apache.org/dtd/sql-map-2.dtd" >
  3. <sqlMap namespace="dp_sjlr_sy" >
  4. <resultMap id="ibatorgenerated_BaseResultMap" class="com.huimv.dp.dataobject.DpSjlrsy" >
  5. <!--
  6. WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
  7. This element was generated on Fri Aug 02 14:27:27 CST 2019.
  8. -->
  9. <result column="ID" property="id" jdbcType="INTEGER" />
  10. <result column="MCID" property="mcid" jdbcType="INTEGER" />
  11. <result column="CLSJYXS" property="clsjyxs" jdbcType="VARCHAR" />
  12. <result column="CLSJYST" property="clsjyst" jdbcType="VARCHAR" />
  13. <result column="CLSJZZ" property="clsjzz" jdbcType="VARCHAR" />
  14. <result column="CLSJHBZZ" property="clsjhbzz" jdbcType="VARCHAR" />
  15. <result column="CLSJBRZ" property="clsjbrz" jdbcType="VARCHAR" />
  16. <result column="CLSJBYZ" property="clsjbyz" jdbcType="VARCHAR" />
  17. <result column="CLSJYFZ" property="clsjyfz" jdbcType="VARCHAR" />
  18. <result column="CLSJXSZS" property="clsjxszs" jdbcType="VARCHAR" />
  19. <result column="CLSJSTZS" property="clsjstzs" jdbcType="VARCHAR" />
  20. <result column="BYPZS" property="bypzs" jdbcType="VARCHAR" />
  21. <result column="BYFMS" property="byfms" jdbcType="VARCHAR" />
  22. <result column="BYCZS" property="byczs" jdbcType="VARCHAR" />
  23. <result column="BYDQXSTS" property="bydqxsts" jdbcType="VARCHAR" />
  24. <result column="BYDQZJ" property="bydqzj" jdbcType="VARCHAR" />
  25. <result column="BYZZCHL" property="byzzchl" jdbcType="VARCHAR" />
  26. <result column="TTSJBYTTS" property="ttsjbytts" jdbcType="VARCHAR" />
  27. <result column="TTSJQYYTTS" property="ttsjqyytts" jdbcType="VARCHAR" />
  28. <result column="TTSJQEYTTS" property="ttsjqeytts" jdbcType="VARCHAR" />
  29. <result column="TTSJZZ" property="ttsjzz" jdbcType="VARCHAR" />
  30. <result column="TTSJFZ" property="ttsjfz" jdbcType="VARCHAR" />
  31. <result column="TTSJQSYTTS" property="ttsjqsytts" jdbcType="VARCHAR" />
  32. <result column="XSSJWEEK" property="xssjweek" jdbcType="VARCHAR" />
  33. <result column="XSSJMONTH" property="xssjmonth" jdbcType="VARCHAR" />
  34. <result column="XSSJYEAR" property="xssjyear" jdbcType="VARCHAR" />
  35. <result column="PZJGFBPZ" property="pzjgfbpz" jdbcType="VARCHAR" />
  36. <result column="PZJGFBHY" property="pzjgfbhy" jdbcType="VARCHAR" />
  37. <result column="PZJGFBLC" property="pzjgfblc" jdbcType="VARCHAR" />
  38. <result column="PZJGFBFQ" property="pzjgfbfq" jdbcType="VARCHAR" />
  39. <result column="PZJGFBQT" property="pzjgfbqt" jdbcType="VARCHAR" />
  40. <result column="PZJGFBPZFML" property="pzjgfbpzfml" jdbcType="VARCHAR" />
  41. <result column="FMZZFBTJZS" property="fmzzfbtjzs" jdbcType="VARCHAR" />
  42. <result column="FMZZFBTRZS" property="fmzzfbtrzs" jdbcType="VARCHAR" />
  43. <result column="FMZZFBTJXS" property="fmzzfbtjxs" jdbcType="VARCHAR" />
  44. <result column="FMZZFBTMNYS" property="fmzzfbtmnys" jdbcType="VARCHAR" />
  45. <result column="FMZZFBTSTS" property="fmzzfbtsts" jdbcType="VARCHAR" />
  46. <result column="FMZZFBTFMCHL" property="fmzzfbtfmchl" jdbcType="VARCHAR" />
  47. <result column="TTFBTSW" property="ttfbtsw" jdbcType="VARCHAR" />
  48. <result column="TTFBTTCTG" property="ttfbttctg" jdbcType="VARCHAR" />
  49. <result column="TTFBTCQBFQ" property="ttfbtcqbfq" jdbcType="VARCHAR" />
  50. <result column="TTFBTCZSS" property="ttfbtczss" jdbcType="VARCHAR" />
  51. <result column="TTFBTCDYZ" property="ttfbtcdyz" jdbcType="VARCHAR" />
  52. <result column="TTFBTYYBL" property="ttfbtyybl" jdbcType="VARCHAR" />
  53. <result column="TTFBTZTJB" property="ttfbtztjb" jdbcType="VARCHAR" />
  54. <result column="TTFBTQT" property="ttfbtqt" jdbcType="VARCHAR" />
  55. <result column="YDTTS1" property="ydtts1" jdbcType="VARCHAR" />
  56. <result column="YDTTS2" property="ydtts2" jdbcType="VARCHAR" />
  57. <result column="YDTTS3" property="ydtts3" jdbcType="VARCHAR" />
  58. <result column="YDTTS4" property="ydtts4" jdbcType="VARCHAR" />
  59. <result column="YDTTS5" property="ydtts5" jdbcType="VARCHAR" />
  60. <result column="YDTTS6" property="ydtts6" jdbcType="VARCHAR" />
  61. <result column="YDTTS7" property="ydtts7" jdbcType="VARCHAR" />
  62. <result column="YDTTS8" property="ydtts8" jdbcType="VARCHAR" />
  63. <result column="YDTTS9" property="ydtts9" jdbcType="VARCHAR" />
  64. <result column="YDTTS10" property="ydtts10" jdbcType="VARCHAR" />
  65. <result column="YDTTS11" property="ydtts11" jdbcType="VARCHAR" />
  66. <result column="YDTTS12" property="ydtts12" jdbcType="VARCHAR" />
  67. <result column="YFFBT1" property="yffbt1" jdbcType="VARCHAR" />
  68. <result column="YFFBT2" property="yffbt2" jdbcType="VARCHAR" />
  69. <result column="YFFBT3" property="yffbt3" jdbcType="VARCHAR" />
  70. <result column="YFFBT4" property="yffbt4" jdbcType="VARCHAR" />
  71. <result column="YFFBT5" property="yffbt5" jdbcType="VARCHAR" />
  72. <result column="YFYFTSYY" property="yfyftsyy" jdbcType="VARCHAR" />
  73. <result column="YFYFTSEY" property="yfyftsey" jdbcType="VARCHAR" />
  74. <result column="YFYFTSSY" property="yfyftssy" jdbcType="VARCHAR" />
  75. <result column="YFYFTSSIY" property="yfyftssiy" jdbcType="VARCHAR" />
  76. <result column="YFYFTSWY" property="yfyftswy" jdbcType="VARCHAR" />
  77. <result column="WHHCLLXR" property="whhcllxr" jdbcType="VARCHAR" />
  78. <result column="WHHCLLXDH" property="whhcllxdh" jdbcType="VARCHAR" />
  79. <result column="WHHCLRQ1" property="whhclrq1" jdbcType="TIMESTAMP" />
  80. <result column="WHHCLRQ2" property="whhclrq2" jdbcType="TIMESTAMP" />
  81. <result column="WHHCLRQ3" property="whhclrq3" jdbcType="TIMESTAMP" />
  82. <result column="WHHCLRQ4" property="whhclrq4" jdbcType="TIMESTAMP" />
  83. <result column="WHHCLRQ5" property="whhclrq5" jdbcType="TIMESTAMP" />
  84. <result column="WHHCLRQ6" property="whhclrq6" jdbcType="TIMESTAMP" />
  85. <result column="WHHCLFS1" property="whhclfs1" jdbcType="VARCHAR" />
  86. <result column="WHHCLFS2" property="whhclfs2" jdbcType="VARCHAR" />
  87. <result column="WHHCLFS3" property="whhclfs3" jdbcType="VARCHAR" />
  88. <result column="WHHCLFS4" property="whhclfs4" jdbcType="VARCHAR" />
  89. <result column="WHHCLFS5" property="whhclfs5" jdbcType="VARCHAR" />
  90. <result column="WHHCLFS6" property="whhclfs6" jdbcType="VARCHAR" />
  91. <result column="WHHCLSL1" property="whhclsl1" jdbcType="VARCHAR" />
  92. <result column="WHHCLSL2" property="whhclsl2" jdbcType="VARCHAR" />
  93. <result column="WHHCLSL3" property="whhclsl3" jdbcType="VARCHAR" />
  94. <result column="WHHCLSL4" property="whhclsl4" jdbcType="VARCHAR" />
  95. <result column="WHHCLSL5" property="whhclsl5" jdbcType="VARCHAR" />
  96. <result column="WHHCLSL6" property="whhclsl6" jdbcType="VARCHAR" />
  97. <result column="XSSJSJ1" property="xssjsj1" jdbcType="TIMESTAMP" />
  98. <result column="XSSJSJ2" property="xssjsj2" jdbcType="TIMESTAMP" />
  99. <result column="XSSJSJ3" property="xssjsj3" jdbcType="TIMESTAMP" />
  100. <result column="XSSJSJ4" property="xssjsj4" jdbcType="TIMESTAMP" />
  101. <result column="XSSJSJ5" property="xssjsj5" jdbcType="TIMESTAMP" />
  102. <result column="XSSJSJ6" property="xssjsj6" jdbcType="TIMESTAMP" />
  103. <result column="WSCL1" property="wscl1" jdbcType="VARCHAR" />
  104. <result column="WSCL2" property="wscl2" jdbcType="VARCHAR" />
  105. <result column="WSCL3" property="wscl3" jdbcType="VARCHAR" />
  106. <result column="WSCL4" property="wscl4" jdbcType="VARCHAR" />
  107. <result column="WSCL5" property="wscl5" jdbcType="VARCHAR" />
  108. <result column="WSCL6" property="wscl6" jdbcType="VARCHAR" />
  109. <result column="WSCL7" property="wscl7" jdbcType="VARCHAR" />
  110. <result column="SBTJ1" property="sbtj1" jdbcType="VARCHAR" />
  111. <result column="SBTJ2" property="sbtj2" jdbcType="VARCHAR" />
  112. <result column="SBTJ3" property="sbtj3" jdbcType="VARCHAR" />
  113. <result column="SBTJ4" property="sbtj4" jdbcType="VARCHAR" />
  114. <result column="SBTJ5" property="sbtj5" jdbcType="VARCHAR" />
  115. <result column="SBTJ6" property="sbtj6" jdbcType="VARCHAR" />
  116. <result column="SBTJ7" property="sbtj7" jdbcType="VARCHAR" />
  117. <result column="SBTJJN" property="sbtjjn" jdbcType="VARCHAR" />
  118. <result column="SBTJQN" property="sbtjqn" jdbcType="VARCHAR" />
  119. <result column="DNZS" property="dnzs" jdbcType="VARCHAR" />
  120. <result column="DNWS" property="dnws" jdbcType="VARCHAR" />
  121. <result column="GTJZ" property="gtjz" jdbcType="VARCHAR" />
  122. <result column="WZHZS" property="wzhzs" jdbcType="VARCHAR" />
  123. <result column="YFFBT6" property="yffbt6" jdbcType="VARCHAR" />
  124. <result column="YFFBT7" property="yffbt7" jdbcType="VARCHAR" />
  125. <result column="BYTTS" property="bytts" jdbcType="VARCHAR" />
  126. <result column="YFTTS" property="yftts" jdbcType="VARCHAR" />
  127. <result column="BYTTSZB" property="byttszb" jdbcType="VARCHAR" />
  128. <result column="QYYTTSZB" property="qyyttszb" jdbcType="VARCHAR" />
  129. <result column="QEYTTSZB" property="qeyttszb" jdbcType="VARCHAR" />
  130. <result column="QSYTTSZB" property="qsyttszb" jdbcType="VARCHAR" />
  131. <result column="MZTTS" property="mztts" jdbcType="VARCHAR" />
  132. <result column="GZTTS" property="gztts" jdbcType="VARCHAR" />
  133. <result column="WEEK1" property="week1" jdbcType="INTEGER" />
  134. <result column="WEEK2" property="week2" jdbcType="INTEGER" />
  135. <result column="WEEK3" property="week3" jdbcType="INTEGER" />
  136. <result column="WEEK4" property="week4" jdbcType="INTEGER" />
  137. <result column="WEEK5" property="week5" jdbcType="INTEGER" />
  138. <result column="WEEK6" property="week6" jdbcType="INTEGER" />
  139. <result column="WEEK7" property="week7" jdbcType="INTEGER" />
  140. <result column="WEEKPRICE1" property="weekprice1" jdbcType="VARCHAR" />
  141. <result column="WEEKPRICE2" property="weekprice2" jdbcType="VARCHAR" />
  142. <result column="WEEKPRICE3" property="weekprice3" jdbcType="VARCHAR" />
  143. <result column="WEEKPRICE4" property="weekprice4" jdbcType="VARCHAR" />
  144. <result column="WEEKPRICE5" property="weekprice5" jdbcType="VARCHAR" />
  145. <result column="WEEKPRICE6" property="weekprice6" jdbcType="VARCHAR" />
  146. <result column="WEEKPRICE7" property="weekprice7" jdbcType="VARCHAR" />
  147. </resultMap>
  148. <sql id="ibatorgenerated_Example_Where_Clause" >
  149. <!--
  150. WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
  151. This element was generated on Fri Aug 02 14:27:27 CST 2019.
  152. -->
  153. <iterate property="oredCriteria" conjunction="or" prepend="where" removeFirstPrepend="iterate" >
  154. <isEqual property="oredCriteria[].valid" compareValue="true" >
  155. (
  156. <iterate prepend="and" property="oredCriteria[].criteriaWithoutValue" conjunction="and" >
  157. $oredCriteria[].criteriaWithoutValue[]$
  158. </iterate>
  159. <iterate prepend="and" property="oredCriteria[].criteriaWithSingleValue" conjunction="and" >
  160. $oredCriteria[].criteriaWithSingleValue[].condition$
  161. #oredCriteria[].criteriaWithSingleValue[].value#
  162. </iterate>
  163. <iterate prepend="and" property="oredCriteria[].criteriaWithListValue" conjunction="and" >
  164. $oredCriteria[].criteriaWithListValue[].condition$
  165. <iterate property="oredCriteria[].criteriaWithListValue[].values" open="(" close=")" conjunction="," >
  166. #oredCriteria[].criteriaWithListValue[].values[]#
  167. </iterate>
  168. </iterate>
  169. <iterate prepend="and" property="oredCriteria[].criteriaWithBetweenValue" conjunction="and" >
  170. $oredCriteria[].criteriaWithBetweenValue[].condition$
  171. #oredCriteria[].criteriaWithBetweenValue[].values[0]# and
  172. #oredCriteria[].criteriaWithBetweenValue[].values[1]#
  173. </iterate>
  174. )
  175. </isEqual>
  176. </iterate>
  177. </sql>
  178. <select id="ibatorgenerated_selectByExample" resultMap="ibatorgenerated_BaseResultMap" parameterClass="com.huimv.dp.dataobject.DpSjlrsyExample" >
  179. <!--
  180. WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
  181. This element was generated on Fri Aug 02 14:27:27 CST 2019.
  182. -->
  183. select ID, MCID, CLSJYXS, CLSJYST, CLSJZZ, CLSJHBZZ, CLSJBRZ, CLSJBYZ, CLSJYFZ, CLSJXSZS,
  184. CLSJSTZS, BYPZS, BYFMS, BYCZS, BYDQXSTS, BYDQZJ, BYZZCHL, TTSJBYTTS, TTSJQYYTTS, TTSJQEYTTS,
  185. TTSJZZ, TTSJFZ, TTSJQSYTTS, XSSJWEEK, XSSJMONTH, XSSJYEAR, PZJGFBPZ, PZJGFBHY, PZJGFBLC,
  186. PZJGFBFQ, PZJGFBQT, PZJGFBPZFML, FMZZFBTJZS, FMZZFBTRZS, FMZZFBTJXS, FMZZFBTMNYS, FMZZFBTSTS,
  187. FMZZFBTFMCHL, TTFBTSW, TTFBTTCTG, TTFBTCQBFQ, TTFBTCZSS, TTFBTCDYZ, TTFBTYYBL, TTFBTZTJB,
  188. TTFBTQT, YDTTS1, YDTTS2, YDTTS3, YDTTS4, YDTTS5, YDTTS6, YDTTS7, YDTTS8, YDTTS9, YDTTS10,
  189. YDTTS11, YDTTS12, YFFBT1, YFFBT2, YFFBT3, YFFBT4, YFFBT5, YFYFTSYY, YFYFTSEY, YFYFTSSY,
  190. YFYFTSSIY, YFYFTSWY, WHHCLLXR, WHHCLLXDH, WHHCLRQ1, WHHCLRQ2, WHHCLRQ3, WHHCLRQ4, WHHCLRQ5,
  191. WHHCLRQ6, WHHCLFS1, WHHCLFS2, WHHCLFS3, WHHCLFS4, WHHCLFS5, WHHCLFS6, WHHCLSL1, WHHCLSL2,
  192. WHHCLSL3, WHHCLSL4, WHHCLSL5, WHHCLSL6, XSSJSJ1, XSSJSJ2, XSSJSJ3, XSSJSJ4, XSSJSJ5, XSSJSJ6,
  193. WSCL1, WSCL2, WSCL3, WSCL4, WSCL5, WSCL6, WSCL7, SBTJ1, SBTJ2, SBTJ3, SBTJ4, SBTJ5, SBTJ6,
  194. SBTJ7, SBTJJN, SBTJQN, DNZS, DNWS, GTJZ, WZHZS, YFFBT6, YFFBT7, BYTTS, YFTTS, BYTTSZB,
  195. QYYTTSZB, QEYTTSZB, QSYTTSZB, MZTTS, GZTTS, WEEK1, WEEK2, WEEK3, WEEK4, WEEK5, WEEK6, WEEK7,
  196. WEEKPRICE1, WEEKPRICE2, WEEKPRICE3, WEEKPRICE4, WEEKPRICE5, WEEKPRICE6, WEEKPRICE7
  197. from dp_sjlr_sy
  198. <isParameterPresent >
  199. <include refid="dp_sjlr_sy.ibatorgenerated_Example_Where_Clause" />
  200. <isNotNull property="orderByClause" >
  201. order by $orderByClause$
  202. </isNotNull>
  203. <isGreaterEqual property="start" compareValue="0" >
  204. limit $start$ , $limit$
  205. </isGreaterEqual>
  206. </isParameterPresent>
  207. </select>
  208. <select id="ibatorgenerated_selectByPrimaryKey" resultMap="ibatorgenerated_BaseResultMap" parameterClass="com.huimv.dp.dataobject.DpSjlrsy" >
  209. <!--
  210. WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
  211. This element was generated on Fri Aug 02 14:27:27 CST 2019.
  212. -->
  213. select ID, MCID, CLSJYXS, CLSJYST, CLSJZZ, CLSJHBZZ, CLSJBRZ, CLSJBYZ, CLSJYFZ, CLSJXSZS,
  214. CLSJSTZS, BYPZS, BYFMS, BYCZS, BYDQXSTS, BYDQZJ, BYZZCHL, TTSJBYTTS, TTSJQYYTTS, TTSJQEYTTS,
  215. TTSJZZ, TTSJFZ, TTSJQSYTTS, XSSJWEEK, XSSJMONTH, XSSJYEAR, PZJGFBPZ, PZJGFBHY, PZJGFBLC,
  216. PZJGFBFQ, PZJGFBQT, PZJGFBPZFML, FMZZFBTJZS, FMZZFBTRZS, FMZZFBTJXS, FMZZFBTMNYS, FMZZFBTSTS,
  217. FMZZFBTFMCHL, TTFBTSW, TTFBTTCTG, TTFBTCQBFQ, TTFBTCZSS, TTFBTCDYZ, TTFBTYYBL, TTFBTZTJB,
  218. TTFBTQT, YDTTS1, YDTTS2, YDTTS3, YDTTS4, YDTTS5, YDTTS6, YDTTS7, YDTTS8, YDTTS9, YDTTS10,
  219. YDTTS11, YDTTS12, YFFBT1, YFFBT2, YFFBT3, YFFBT4, YFFBT5, YFYFTSYY, YFYFTSEY, YFYFTSSY,
  220. YFYFTSSIY, YFYFTSWY, WHHCLLXR, WHHCLLXDH, WHHCLRQ1, WHHCLRQ2, WHHCLRQ3, WHHCLRQ4, WHHCLRQ5,
  221. WHHCLRQ6, WHHCLFS1, WHHCLFS2, WHHCLFS3, WHHCLFS4, WHHCLFS5, WHHCLFS6, WHHCLSL1, WHHCLSL2,
  222. WHHCLSL3, WHHCLSL4, WHHCLSL5, WHHCLSL6, XSSJSJ1, XSSJSJ2, XSSJSJ3, XSSJSJ4, XSSJSJ5, XSSJSJ6,
  223. WSCL1, WSCL2, WSCL3, WSCL4, WSCL5, WSCL6, WSCL7, SBTJ1, SBTJ2, SBTJ3, SBTJ4, SBTJ5, SBTJ6,
  224. SBTJ7, SBTJJN, SBTJQN, DNZS, DNWS, GTJZ, WZHZS, YFFBT6, YFFBT7, BYTTS, YFTTS, BYTTSZB,
  225. QYYTTSZB, QEYTTSZB, QSYTTSZB, MZTTS, GZTTS, WEEK1, WEEK2, WEEK3, WEEK4, WEEK5, WEEK6, WEEK7,
  226. WEEKPRICE1, WEEKPRICE2, WEEKPRICE3, WEEKPRICE4, WEEKPRICE5, WEEKPRICE6, WEEKPRICE7
  227. from dp_sjlr_sy
  228. where ID = #id:INTEGER#
  229. </select>
  230. <delete id="ibatorgenerated_deleteByPrimaryKey" parameterClass="com.huimv.dp.dataobject.DpSjlrsy" >
  231. <!--
  232. WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
  233. This element was generated on Fri Aug 02 14:27:27 CST 2019.
  234. -->
  235. delete from dp_sjlr_sy
  236. where ID = #id:INTEGER#
  237. </delete>
  238. <delete id="ibatorgenerated_deleteByExample" parameterClass="com.huimv.dp.dataobject.DpSjlrsyExample" >
  239. <!--
  240. WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
  241. This element was generated on Fri Aug 02 14:27:27 CST 2019.
  242. -->
  243. delete from dp_sjlr_sy
  244. <include refid="dp_sjlr_sy.ibatorgenerated_Example_Where_Clause" />
  245. </delete>
  246. <insert id="ibatorgenerated_insert" parameterClass="com.huimv.dp.dataobject.DpSjlrsy" >
  247. <!--
  248. WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
  249. This element was generated on Fri Aug 02 14:27:27 CST 2019.
  250. -->
  251. insert into dp_sjlr_sy (ID, MCID, CLSJYXS, CLSJYST, CLSJZZ, CLSJHBZZ, CLSJBRZ, CLSJBYZ, CLSJYFZ,
  252. CLSJXSZS, CLSJSTZS, BYPZS, BYFMS, BYCZS, BYDQXSTS, BYDQZJ, BYZZCHL, TTSJBYTTS, TTSJQYYTTS,
  253. TTSJQEYTTS, TTSJZZ, TTSJFZ, TTSJQSYTTS, XSSJWEEK, XSSJMONTH, XSSJYEAR, PZJGFBPZ, PZJGFBHY,
  254. PZJGFBLC, PZJGFBFQ, PZJGFBQT, PZJGFBPZFML, FMZZFBTJZS, FMZZFBTRZS, FMZZFBTJXS, FMZZFBTMNYS,
  255. FMZZFBTSTS, FMZZFBTFMCHL, TTFBTSW, TTFBTTCTG, TTFBTCQBFQ, TTFBTCZSS, TTFBTCDYZ, TTFBTYYBL,
  256. TTFBTZTJB, TTFBTQT, YDTTS1, YDTTS2, YDTTS3, YDTTS4, YDTTS5, YDTTS6, YDTTS7, YDTTS8, YDTTS9,
  257. YDTTS10, YDTTS11, YDTTS12, YFFBT1, YFFBT2, YFFBT3, YFFBT4, YFFBT5, YFYFTSYY, YFYFTSEY,
  258. YFYFTSSY, YFYFTSSIY, YFYFTSWY, WHHCLLXR, WHHCLLXDH, WHHCLRQ1, WHHCLRQ2, WHHCLRQ3, WHHCLRQ4,
  259. WHHCLRQ5, WHHCLRQ6, WHHCLFS1, WHHCLFS2, WHHCLFS3, WHHCLFS4, WHHCLFS5, WHHCLFS6, WHHCLSL1,
  260. WHHCLSL2, WHHCLSL3, WHHCLSL4, WHHCLSL5, WHHCLSL6, XSSJSJ1, XSSJSJ2, XSSJSJ3, XSSJSJ4, XSSJSJ5,
  261. XSSJSJ6, WSCL1, WSCL2, WSCL3, WSCL4, WSCL5, WSCL6, WSCL7, SBTJ1, SBTJ2, SBTJ3, SBTJ4, SBTJ5,
  262. SBTJ6, SBTJ7, SBTJJN, SBTJQN, DNZS, DNWS, GTJZ, WZHZS, YFFBT6, YFFBT7, BYTTS, YFTTS, BYTTSZB,
  263. QYYTTSZB, QEYTTSZB, QSYTTSZB, MZTTS, GZTTS, WEEK1, WEEK2, WEEK3, WEEK4, WEEK5, WEEK6, WEEK7,
  264. WEEKPRICE1, WEEKPRICE2, WEEKPRICE3, WEEKPRICE4, WEEKPRICE5, WEEKPRICE6, WEEKPRICE7)
  265. values (#id:INTEGER#, #mcid:INTEGER#, #clsjyxs:VARCHAR#, #clsjyst:VARCHAR#, #clsjzz:VARCHAR#,
  266. #clsjhbzz:VARCHAR#, #clsjbrz:VARCHAR#, #clsjbyz:VARCHAR#, #clsjyfz:VARCHAR#,
  267. #clsjxszs:VARCHAR#, #clsjstzs:VARCHAR#, #bypzs:VARCHAR#, #byfms:VARCHAR#, #byczs:VARCHAR#,
  268. #bydqxsts:VARCHAR#, #bydqzj:VARCHAR#, #byzzchl:VARCHAR#, #ttsjbytts:VARCHAR#,
  269. #ttsjqyytts:VARCHAR#, #ttsjqeytts:VARCHAR#, #ttsjzz:VARCHAR#, #ttsjfz:VARCHAR#,
  270. #ttsjqsytts:VARCHAR#, #xssjweek:VARCHAR#, #xssjmonth:VARCHAR#, #xssjyear:VARCHAR#,
  271. #pzjgfbpz:VARCHAR#, #pzjgfbhy:VARCHAR#, #pzjgfblc:VARCHAR#, #pzjgfbfq:VARCHAR#,
  272. #pzjgfbqt:VARCHAR#, #pzjgfbpzfml:VARCHAR#, #fmzzfbtjzs:VARCHAR#, #fmzzfbtrzs:VARCHAR#,
  273. #fmzzfbtjxs:VARCHAR#, #fmzzfbtmnys:VARCHAR#, #fmzzfbtsts:VARCHAR#, #fmzzfbtfmchl:VARCHAR#,
  274. #ttfbtsw:VARCHAR#, #ttfbttctg:VARCHAR#, #ttfbtcqbfq:VARCHAR#, #ttfbtczss:VARCHAR#,
  275. #ttfbtcdyz:VARCHAR#, #ttfbtyybl:VARCHAR#, #ttfbtztjb:VARCHAR#, #ttfbtqt:VARCHAR#,
  276. #ydtts1:VARCHAR#, #ydtts2:VARCHAR#, #ydtts3:VARCHAR#, #ydtts4:VARCHAR#, #ydtts5:VARCHAR#,
  277. #ydtts6:VARCHAR#, #ydtts7:VARCHAR#, #ydtts8:VARCHAR#, #ydtts9:VARCHAR#, #ydtts10:VARCHAR#,
  278. #ydtts11:VARCHAR#, #ydtts12:VARCHAR#, #yffbt1:VARCHAR#, #yffbt2:VARCHAR#, #yffbt3:VARCHAR#,
  279. #yffbt4:VARCHAR#, #yffbt5:VARCHAR#, #yfyftsyy:VARCHAR#, #yfyftsey:VARCHAR#,
  280. #yfyftssy:VARCHAR#, #yfyftssiy:VARCHAR#, #yfyftswy:VARCHAR#, #whhcllxr:VARCHAR#,
  281. #whhcllxdh:VARCHAR#, #whhclrq1:TIMESTAMP#, #whhclrq2:TIMESTAMP#, #whhclrq3:TIMESTAMP#,
  282. #whhclrq4:TIMESTAMP#, #whhclrq5:TIMESTAMP#, #whhclrq6:TIMESTAMP#, #whhclfs1:VARCHAR#,
  283. #whhclfs2:VARCHAR#, #whhclfs3:VARCHAR#, #whhclfs4:VARCHAR#, #whhclfs5:VARCHAR#,
  284. #whhclfs6:VARCHAR#, #whhclsl1:VARCHAR#, #whhclsl2:VARCHAR#, #whhclsl3:VARCHAR#,
  285. #whhclsl4:VARCHAR#, #whhclsl5:VARCHAR#, #whhclsl6:VARCHAR#, #xssjsj1:TIMESTAMP#,
  286. #xssjsj2:TIMESTAMP#, #xssjsj3:TIMESTAMP#, #xssjsj4:TIMESTAMP#, #xssjsj5:TIMESTAMP#,
  287. #xssjsj6:TIMESTAMP#, #wscl1:VARCHAR#, #wscl2:VARCHAR#, #wscl3:VARCHAR#, #wscl4:VARCHAR#,
  288. #wscl5:VARCHAR#, #wscl6:VARCHAR#, #wscl7:VARCHAR#, #sbtj1:VARCHAR#, #sbtj2:VARCHAR#,
  289. #sbtj3:VARCHAR#, #sbtj4:VARCHAR#, #sbtj5:VARCHAR#, #sbtj6:VARCHAR#, #sbtj7:VARCHAR#,
  290. #sbtjjn:VARCHAR#, #sbtjqn:VARCHAR#, #dnzs:VARCHAR#, #dnws:VARCHAR#, #gtjz:VARCHAR#,
  291. #wzhzs:VARCHAR#, #yffbt6:VARCHAR#, #yffbt7:VARCHAR#, #bytts:VARCHAR#, #yftts:VARCHAR#,
  292. #byttszb:VARCHAR#, #qyyttszb:VARCHAR#, #qeyttszb:VARCHAR#, #qsyttszb:VARCHAR#,
  293. #mztts:VARCHAR#, #gztts:VARCHAR#, #week1:INTEGER#, #week2:INTEGER#, #week3:INTEGER#,
  294. #week4:INTEGER#, #week5:INTEGER#, #week6:INTEGER#, #week7:INTEGER#, #weekprice1:VARCHAR#,
  295. #weekprice2:VARCHAR#, #weekprice3:VARCHAR#, #weekprice4:VARCHAR#, #weekprice5:VARCHAR#,
  296. #weekprice6:VARCHAR#, #weekprice7:VARCHAR#)
  297. </insert>
  298. <insert id="ibatorgenerated_insertSelective" parameterClass="com.huimv.dp.dataobject.DpSjlrsy" >
  299. <!--
  300. WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
  301. This element was generated on Fri Aug 02 14:27:27 CST 2019.
  302. -->
  303. insert into dp_sjlr_sy
  304. <dynamic prepend="(" >
  305. <isNotNull prepend="," property="id" >
  306. ID
  307. </isNotNull>
  308. <isNotNull prepend="," property="mcid" >
  309. MCID
  310. </isNotNull>
  311. <isNotNull prepend="," property="clsjyxs" >
  312. CLSJYXS
  313. </isNotNull>
  314. <isNotNull prepend="," property="clsjyst" >
  315. CLSJYST
  316. </isNotNull>
  317. <isNotNull prepend="," property="clsjzz" >
  318. CLSJZZ
  319. </isNotNull>
  320. <isNotNull prepend="," property="clsjhbzz" >
  321. CLSJHBZZ
  322. </isNotNull>
  323. <isNotNull prepend="," property="clsjbrz" >
  324. CLSJBRZ
  325. </isNotNull>
  326. <isNotNull prepend="," property="clsjbyz" >
  327. CLSJBYZ
  328. </isNotNull>
  329. <isNotNull prepend="," property="clsjyfz" >
  330. CLSJYFZ
  331. </isNotNull>
  332. <isNotNull prepend="," property="clsjxszs" >
  333. CLSJXSZS
  334. </isNotNull>
  335. <isNotNull prepend="," property="clsjstzs" >
  336. CLSJSTZS
  337. </isNotNull>
  338. <isNotNull prepend="," property="bypzs" >
  339. BYPZS
  340. </isNotNull>
  341. <isNotNull prepend="," property="byfms" >
  342. BYFMS
  343. </isNotNull>
  344. <isNotNull prepend="," property="byczs" >
  345. BYCZS
  346. </isNotNull>
  347. <isNotNull prepend="," property="bydqxsts" >
  348. BYDQXSTS
  349. </isNotNull>
  350. <isNotNull prepend="," property="bydqzj" >
  351. BYDQZJ
  352. </isNotNull>
  353. <isNotNull prepend="," property="byzzchl" >
  354. BYZZCHL
  355. </isNotNull>
  356. <isNotNull prepend="," property="ttsjbytts" >
  357. TTSJBYTTS
  358. </isNotNull>
  359. <isNotNull prepend="," property="ttsjqyytts" >
  360. TTSJQYYTTS
  361. </isNotNull>
  362. <isNotNull prepend="," property="ttsjqeytts" >
  363. TTSJQEYTTS
  364. </isNotNull>
  365. <isNotNull prepend="," property="ttsjzz" >
  366. TTSJZZ
  367. </isNotNull>
  368. <isNotNull prepend="," property="ttsjfz" >
  369. TTSJFZ
  370. </isNotNull>
  371. <isNotNull prepend="," property="ttsjqsytts" >
  372. TTSJQSYTTS
  373. </isNotNull>
  374. <isNotNull prepend="," property="xssjweek" >
  375. XSSJWEEK
  376. </isNotNull>
  377. <isNotNull prepend="," property="xssjmonth" >
  378. XSSJMONTH
  379. </isNotNull>
  380. <isNotNull prepend="," property="xssjyear" >
  381. XSSJYEAR
  382. </isNotNull>
  383. <isNotNull prepend="," property="pzjgfbpz" >
  384. PZJGFBPZ
  385. </isNotNull>
  386. <isNotNull prepend="," property="pzjgfbhy" >
  387. PZJGFBHY
  388. </isNotNull>
  389. <isNotNull prepend="," property="pzjgfblc" >
  390. PZJGFBLC
  391. </isNotNull>
  392. <isNotNull prepend="," property="pzjgfbfq" >
  393. PZJGFBFQ
  394. </isNotNull>
  395. <isNotNull prepend="," property="pzjgfbqt" >
  396. PZJGFBQT
  397. </isNotNull>
  398. <isNotNull prepend="," property="pzjgfbpzfml" >
  399. PZJGFBPZFML
  400. </isNotNull>
  401. <isNotNull prepend="," property="fmzzfbtjzs" >
  402. FMZZFBTJZS
  403. </isNotNull>
  404. <isNotNull prepend="," property="fmzzfbtrzs" >
  405. FMZZFBTRZS
  406. </isNotNull>
  407. <isNotNull prepend="," property="fmzzfbtjxs" >
  408. FMZZFBTJXS
  409. </isNotNull>
  410. <isNotNull prepend="," property="fmzzfbtmnys" >
  411. FMZZFBTMNYS
  412. </isNotNull>
  413. <isNotNull prepend="," property="fmzzfbtsts" >
  414. FMZZFBTSTS
  415. </isNotNull>
  416. <isNotNull prepend="," property="fmzzfbtfmchl" >
  417. FMZZFBTFMCHL
  418. </isNotNull>
  419. <isNotNull prepend="," property="ttfbtsw" >
  420. TTFBTSW
  421. </isNotNull>
  422. <isNotNull prepend="," property="ttfbttctg" >
  423. TTFBTTCTG
  424. </isNotNull>
  425. <isNotNull prepend="," property="ttfbtcqbfq" >
  426. TTFBTCQBFQ
  427. </isNotNull>
  428. <isNotNull prepend="," property="ttfbtczss" >
  429. TTFBTCZSS
  430. </isNotNull>
  431. <isNotNull prepend="," property="ttfbtcdyz" >
  432. TTFBTCDYZ
  433. </isNotNull>
  434. <isNotNull prepend="," property="ttfbtyybl" >
  435. TTFBTYYBL
  436. </isNotNull>
  437. <isNotNull prepend="," property="ttfbtztjb" >
  438. TTFBTZTJB
  439. </isNotNull>
  440. <isNotNull prepend="," property="ttfbtqt" >
  441. TTFBTQT
  442. </isNotNull>
  443. <isNotNull prepend="," property="ydtts1" >
  444. YDTTS1
  445. </isNotNull>
  446. <isNotNull prepend="," property="ydtts2" >
  447. YDTTS2
  448. </isNotNull>
  449. <isNotNull prepend="," property="ydtts3" >
  450. YDTTS3
  451. </isNotNull>
  452. <isNotNull prepend="," property="ydtts4" >
  453. YDTTS4
  454. </isNotNull>
  455. <isNotNull prepend="," property="ydtts5" >
  456. YDTTS5
  457. </isNotNull>
  458. <isNotNull prepend="," property="ydtts6" >
  459. YDTTS6
  460. </isNotNull>
  461. <isNotNull prepend="," property="ydtts7" >
  462. YDTTS7
  463. </isNotNull>
  464. <isNotNull prepend="," property="ydtts8" >
  465. YDTTS8
  466. </isNotNull>
  467. <isNotNull prepend="," property="ydtts9" >
  468. YDTTS9
  469. </isNotNull>
  470. <isNotNull prepend="," property="ydtts10" >
  471. YDTTS10
  472. </isNotNull>
  473. <isNotNull prepend="," property="ydtts11" >
  474. YDTTS11
  475. </isNotNull>
  476. <isNotNull prepend="," property="ydtts12" >
  477. YDTTS12
  478. </isNotNull>
  479. <isNotNull prepend="," property="yffbt1" >
  480. YFFBT1
  481. </isNotNull>
  482. <isNotNull prepend="," property="yffbt2" >
  483. YFFBT2
  484. </isNotNull>
  485. <isNotNull prepend="," property="yffbt3" >
  486. YFFBT3
  487. </isNotNull>
  488. <isNotNull prepend="," property="yffbt4" >
  489. YFFBT4
  490. </isNotNull>
  491. <isNotNull prepend="," property="yffbt5" >
  492. YFFBT5
  493. </isNotNull>
  494. <isNotNull prepend="," property="yfyftsyy" >
  495. YFYFTSYY
  496. </isNotNull>
  497. <isNotNull prepend="," property="yfyftsey" >
  498. YFYFTSEY
  499. </isNotNull>
  500. <isNotNull prepend="," property="yfyftssy" >
  501. YFYFTSSY
  502. </isNotNull>
  503. <isNotNull prepend="," property="yfyftssiy" >
  504. YFYFTSSIY
  505. </isNotNull>
  506. <isNotNull prepend="," property="yfyftswy" >
  507. YFYFTSWY
  508. </isNotNull>
  509. <isNotNull prepend="," property="whhcllxr" >
  510. WHHCLLXR
  511. </isNotNull>
  512. <isNotNull prepend="," property="whhcllxdh" >
  513. WHHCLLXDH
  514. </isNotNull>
  515. <isNotNull prepend="," property="whhclrq1" >
  516. WHHCLRQ1
  517. </isNotNull>
  518. <isNotNull prepend="," property="whhclrq2" >
  519. WHHCLRQ2
  520. </isNotNull>
  521. <isNotNull prepend="," property="whhclrq3" >
  522. WHHCLRQ3
  523. </isNotNull>
  524. <isNotNull prepend="," property="whhclrq4" >
  525. WHHCLRQ4
  526. </isNotNull>
  527. <isNotNull prepend="," property="whhclrq5" >
  528. WHHCLRQ5
  529. </isNotNull>
  530. <isNotNull prepend="," property="whhclrq6" >
  531. WHHCLRQ6
  532. </isNotNull>
  533. <isNotNull prepend="," property="whhclfs1" >
  534. WHHCLFS1
  535. </isNotNull>
  536. <isNotNull prepend="," property="whhclfs2" >
  537. WHHCLFS2
  538. </isNotNull>
  539. <isNotNull prepend="," property="whhclfs3" >
  540. WHHCLFS3
  541. </isNotNull>
  542. <isNotNull prepend="," property="whhclfs4" >
  543. WHHCLFS4
  544. </isNotNull>
  545. <isNotNull prepend="," property="whhclfs5" >
  546. WHHCLFS5
  547. </isNotNull>
  548. <isNotNull prepend="," property="whhclfs6" >
  549. WHHCLFS6
  550. </isNotNull>
  551. <isNotNull prepend="," property="whhclsl1" >
  552. WHHCLSL1
  553. </isNotNull>
  554. <isNotNull prepend="," property="whhclsl2" >
  555. WHHCLSL2
  556. </isNotNull>
  557. <isNotNull prepend="," property="whhclsl3" >
  558. WHHCLSL3
  559. </isNotNull>
  560. <isNotNull prepend="," property="whhclsl4" >
  561. WHHCLSL4
  562. </isNotNull>
  563. <isNotNull prepend="," property="whhclsl5" >
  564. WHHCLSL5
  565. </isNotNull>
  566. <isNotNull prepend="," property="whhclsl6" >
  567. WHHCLSL6
  568. </isNotNull>
  569. <isNotNull prepend="," property="xssjsj1" >
  570. XSSJSJ1
  571. </isNotNull>
  572. <isNotNull prepend="," property="xssjsj2" >
  573. XSSJSJ2
  574. </isNotNull>
  575. <isNotNull prepend="," property="xssjsj3" >
  576. XSSJSJ3
  577. </isNotNull>
  578. <isNotNull prepend="," property="xssjsj4" >
  579. XSSJSJ4
  580. </isNotNull>
  581. <isNotNull prepend="," property="xssjsj5" >
  582. XSSJSJ5
  583. </isNotNull>
  584. <isNotNull prepend="," property="xssjsj6" >
  585. XSSJSJ6
  586. </isNotNull>
  587. <isNotNull prepend="," property="wscl1" >
  588. WSCL1
  589. </isNotNull>
  590. <isNotNull prepend="," property="wscl2" >
  591. WSCL2
  592. </isNotNull>
  593. <isNotNull prepend="," property="wscl3" >
  594. WSCL3
  595. </isNotNull>
  596. <isNotNull prepend="," property="wscl4" >
  597. WSCL4
  598. </isNotNull>
  599. <isNotNull prepend="," property="wscl5" >
  600. WSCL5
  601. </isNotNull>
  602. <isNotNull prepend="," property="wscl6" >
  603. WSCL6
  604. </isNotNull>
  605. <isNotNull prepend="," property="wscl7" >
  606. WSCL7
  607. </isNotNull>
  608. <isNotNull prepend="," property="sbtj1" >
  609. SBTJ1
  610. </isNotNull>
  611. <isNotNull prepend="," property="sbtj2" >
  612. SBTJ2
  613. </isNotNull>
  614. <isNotNull prepend="," property="sbtj3" >
  615. SBTJ3
  616. </isNotNull>
  617. <isNotNull prepend="," property="sbtj4" >
  618. SBTJ4
  619. </isNotNull>
  620. <isNotNull prepend="," property="sbtj5" >
  621. SBTJ5
  622. </isNotNull>
  623. <isNotNull prepend="," property="sbtj6" >
  624. SBTJ6
  625. </isNotNull>
  626. <isNotNull prepend="," property="sbtj7" >
  627. SBTJ7
  628. </isNotNull>
  629. <isNotNull prepend="," property="sbtjjn" >
  630. SBTJJN
  631. </isNotNull>
  632. <isNotNull prepend="," property="sbtjqn" >
  633. SBTJQN
  634. </isNotNull>
  635. <isNotNull prepend="," property="dnzs" >
  636. DNZS
  637. </isNotNull>
  638. <isNotNull prepend="," property="dnws" >
  639. DNWS
  640. </isNotNull>
  641. <isNotNull prepend="," property="gtjz" >
  642. GTJZ
  643. </isNotNull>
  644. <isNotNull prepend="," property="wzhzs" >
  645. WZHZS
  646. </isNotNull>
  647. <isNotNull prepend="," property="yffbt6" >
  648. YFFBT6
  649. </isNotNull>
  650. <isNotNull prepend="," property="yffbt7" >
  651. YFFBT7
  652. </isNotNull>
  653. <isNotNull prepend="," property="bytts" >
  654. BYTTS
  655. </isNotNull>
  656. <isNotNull prepend="," property="yftts" >
  657. YFTTS
  658. </isNotNull>
  659. <isNotNull prepend="," property="byttszb" >
  660. BYTTSZB
  661. </isNotNull>
  662. <isNotNull prepend="," property="qyyttszb" >
  663. QYYTTSZB
  664. </isNotNull>
  665. <isNotNull prepend="," property="qeyttszb" >
  666. QEYTTSZB
  667. </isNotNull>
  668. <isNotNull prepend="," property="qsyttszb" >
  669. QSYTTSZB
  670. </isNotNull>
  671. <isNotNull prepend="," property="mztts" >
  672. MZTTS
  673. </isNotNull>
  674. <isNotNull prepend="," property="gztts" >
  675. GZTTS
  676. </isNotNull>
  677. <isNotNull prepend="," property="week1" >
  678. WEEK1
  679. </isNotNull>
  680. <isNotNull prepend="," property="week2" >
  681. WEEK2
  682. </isNotNull>
  683. <isNotNull prepend="," property="week3" >
  684. WEEK3
  685. </isNotNull>
  686. <isNotNull prepend="," property="week4" >
  687. WEEK4
  688. </isNotNull>
  689. <isNotNull prepend="," property="week5" >
  690. WEEK5
  691. </isNotNull>
  692. <isNotNull prepend="," property="week6" >
  693. WEEK6
  694. </isNotNull>
  695. <isNotNull prepend="," property="week7" >
  696. WEEK7
  697. </isNotNull>
  698. <isNotNull prepend="," property="weekprice1" >
  699. WEEKPRICE1
  700. </isNotNull>
  701. <isNotNull prepend="," property="weekprice2" >
  702. WEEKPRICE2
  703. </isNotNull>
  704. <isNotNull prepend="," property="weekprice3" >
  705. WEEKPRICE3
  706. </isNotNull>
  707. <isNotNull prepend="," property="weekprice4" >
  708. WEEKPRICE4
  709. </isNotNull>
  710. <isNotNull prepend="," property="weekprice5" >
  711. WEEKPRICE5
  712. </isNotNull>
  713. <isNotNull prepend="," property="weekprice6" >
  714. WEEKPRICE6
  715. </isNotNull>
  716. <isNotNull prepend="," property="weekprice7" >
  717. WEEKPRICE7
  718. </isNotNull>
  719. )
  720. </dynamic>
  721. values
  722. <dynamic prepend="(" >
  723. <isNotNull prepend="," property="id" >
  724. #id:INTEGER#
  725. </isNotNull>
  726. <isNotNull prepend="," property="mcid" >
  727. #mcid:INTEGER#
  728. </isNotNull>
  729. <isNotNull prepend="," property="clsjyxs" >
  730. #clsjyxs:VARCHAR#
  731. </isNotNull>
  732. <isNotNull prepend="," property="clsjyst" >
  733. #clsjyst:VARCHAR#
  734. </isNotNull>
  735. <isNotNull prepend="," property="clsjzz" >
  736. #clsjzz:VARCHAR#
  737. </isNotNull>
  738. <isNotNull prepend="," property="clsjhbzz" >
  739. #clsjhbzz:VARCHAR#
  740. </isNotNull>
  741. <isNotNull prepend="," property="clsjbrz" >
  742. #clsjbrz:VARCHAR#
  743. </isNotNull>
  744. <isNotNull prepend="," property="clsjbyz" >
  745. #clsjbyz:VARCHAR#
  746. </isNotNull>
  747. <isNotNull prepend="," property="clsjyfz" >
  748. #clsjyfz:VARCHAR#
  749. </isNotNull>
  750. <isNotNull prepend="," property="clsjxszs" >
  751. #clsjxszs:VARCHAR#
  752. </isNotNull>
  753. <isNotNull prepend="," property="clsjstzs" >
  754. #clsjstzs:VARCHAR#
  755. </isNotNull>
  756. <isNotNull prepend="," property="bypzs" >
  757. #bypzs:VARCHAR#
  758. </isNotNull>
  759. <isNotNull prepend="," property="byfms" >
  760. #byfms:VARCHAR#
  761. </isNotNull>
  762. <isNotNull prepend="," property="byczs" >
  763. #byczs:VARCHAR#
  764. </isNotNull>
  765. <isNotNull prepend="," property="bydqxsts" >
  766. #bydqxsts:VARCHAR#
  767. </isNotNull>
  768. <isNotNull prepend="," property="bydqzj" >
  769. #bydqzj:VARCHAR#
  770. </isNotNull>
  771. <isNotNull prepend="," property="byzzchl" >
  772. #byzzchl:VARCHAR#
  773. </isNotNull>
  774. <isNotNull prepend="," property="ttsjbytts" >
  775. #ttsjbytts:VARCHAR#
  776. </isNotNull>
  777. <isNotNull prepend="," property="ttsjqyytts" >
  778. #ttsjqyytts:VARCHAR#
  779. </isNotNull>
  780. <isNotNull prepend="," property="ttsjqeytts" >
  781. #ttsjqeytts:VARCHAR#
  782. </isNotNull>
  783. <isNotNull prepend="," property="ttsjzz" >
  784. #ttsjzz:VARCHAR#
  785. </isNotNull>
  786. <isNotNull prepend="," property="ttsjfz" >
  787. #ttsjfz:VARCHAR#
  788. </isNotNull>
  789. <isNotNull prepend="," property="ttsjqsytts" >
  790. #ttsjqsytts:VARCHAR#
  791. </isNotNull>
  792. <isNotNull prepend="," property="xssjweek" >
  793. #xssjweek:VARCHAR#
  794. </isNotNull>
  795. <isNotNull prepend="," property="xssjmonth" >
  796. #xssjmonth:VARCHAR#
  797. </isNotNull>
  798. <isNotNull prepend="," property="xssjyear" >
  799. #xssjyear:VARCHAR#
  800. </isNotNull>
  801. <isNotNull prepend="," property="pzjgfbpz" >
  802. #pzjgfbpz:VARCHAR#
  803. </isNotNull>
  804. <isNotNull prepend="," property="pzjgfbhy" >
  805. #pzjgfbhy:VARCHAR#
  806. </isNotNull>
  807. <isNotNull prepend="," property="pzjgfblc" >
  808. #pzjgfblc:VARCHAR#
  809. </isNotNull>
  810. <isNotNull prepend="," property="pzjgfbfq" >
  811. #pzjgfbfq:VARCHAR#
  812. </isNotNull>
  813. <isNotNull prepend="," property="pzjgfbqt" >
  814. #pzjgfbqt:VARCHAR#
  815. </isNotNull>
  816. <isNotNull prepend="," property="pzjgfbpzfml" >
  817. #pzjgfbpzfml:VARCHAR#
  818. </isNotNull>
  819. <isNotNull prepend="," property="fmzzfbtjzs" >
  820. #fmzzfbtjzs:VARCHAR#
  821. </isNotNull>
  822. <isNotNull prepend="," property="fmzzfbtrzs" >
  823. #fmzzfbtrzs:VARCHAR#
  824. </isNotNull>
  825. <isNotNull prepend="," property="fmzzfbtjxs" >
  826. #fmzzfbtjxs:VARCHAR#
  827. </isNotNull>
  828. <isNotNull prepend="," property="fmzzfbtmnys" >
  829. #fmzzfbtmnys:VARCHAR#
  830. </isNotNull>
  831. <isNotNull prepend="," property="fmzzfbtsts" >
  832. #fmzzfbtsts:VARCHAR#
  833. </isNotNull>
  834. <isNotNull prepend="," property="fmzzfbtfmchl" >
  835. #fmzzfbtfmchl:VARCHAR#
  836. </isNotNull>
  837. <isNotNull prepend="," property="ttfbtsw" >
  838. #ttfbtsw:VARCHAR#
  839. </isNotNull>
  840. <isNotNull prepend="," property="ttfbttctg" >
  841. #ttfbttctg:VARCHAR#
  842. </isNotNull>
  843. <isNotNull prepend="," property="ttfbtcqbfq" >
  844. #ttfbtcqbfq:VARCHAR#
  845. </isNotNull>
  846. <isNotNull prepend="," property="ttfbtczss" >
  847. #ttfbtczss:VARCHAR#
  848. </isNotNull>
  849. <isNotNull prepend="," property="ttfbtcdyz" >
  850. #ttfbtcdyz:VARCHAR#
  851. </isNotNull>
  852. <isNotNull prepend="," property="ttfbtyybl" >
  853. #ttfbtyybl:VARCHAR#
  854. </isNotNull>
  855. <isNotNull prepend="," property="ttfbtztjb" >
  856. #ttfbtztjb:VARCHAR#
  857. </isNotNull>
  858. <isNotNull prepend="," property="ttfbtqt" >
  859. #ttfbtqt:VARCHAR#
  860. </isNotNull>
  861. <isNotNull prepend="," property="ydtts1" >
  862. #ydtts1:VARCHAR#
  863. </isNotNull>
  864. <isNotNull prepend="," property="ydtts2" >
  865. #ydtts2:VARCHAR#
  866. </isNotNull>
  867. <isNotNull prepend="," property="ydtts3" >
  868. #ydtts3:VARCHAR#
  869. </isNotNull>
  870. <isNotNull prepend="," property="ydtts4" >
  871. #ydtts4:VARCHAR#
  872. </isNotNull>
  873. <isNotNull prepend="," property="ydtts5" >
  874. #ydtts5:VARCHAR#
  875. </isNotNull>
  876. <isNotNull prepend="," property="ydtts6" >
  877. #ydtts6:VARCHAR#
  878. </isNotNull>
  879. <isNotNull prepend="," property="ydtts7" >
  880. #ydtts7:VARCHAR#
  881. </isNotNull>
  882. <isNotNull prepend="," property="ydtts8" >
  883. #ydtts8:VARCHAR#
  884. </isNotNull>
  885. <isNotNull prepend="," property="ydtts9" >
  886. #ydtts9:VARCHAR#
  887. </isNotNull>
  888. <isNotNull prepend="," property="ydtts10" >
  889. #ydtts10:VARCHAR#
  890. </isNotNull>
  891. <isNotNull prepend="," property="ydtts11" >
  892. #ydtts11:VARCHAR#
  893. </isNotNull>
  894. <isNotNull prepend="," property="ydtts12" >
  895. #ydtts12:VARCHAR#
  896. </isNotNull>
  897. <isNotNull prepend="," property="yffbt1" >
  898. #yffbt1:VARCHAR#
  899. </isNotNull>
  900. <isNotNull prepend="," property="yffbt2" >
  901. #yffbt2:VARCHAR#
  902. </isNotNull>
  903. <isNotNull prepend="," property="yffbt3" >
  904. #yffbt3:VARCHAR#
  905. </isNotNull>
  906. <isNotNull prepend="," property="yffbt4" >
  907. #yffbt4:VARCHAR#
  908. </isNotNull>
  909. <isNotNull prepend="," property="yffbt5" >
  910. #yffbt5:VARCHAR#
  911. </isNotNull>
  912. <isNotNull prepend="," property="yfyftsyy" >
  913. #yfyftsyy:VARCHAR#
  914. </isNotNull>
  915. <isNotNull prepend="," property="yfyftsey" >
  916. #yfyftsey:VARCHAR#
  917. </isNotNull>
  918. <isNotNull prepend="," property="yfyftssy" >
  919. #yfyftssy:VARCHAR#
  920. </isNotNull>
  921. <isNotNull prepend="," property="yfyftssiy" >
  922. #yfyftssiy:VARCHAR#
  923. </isNotNull>
  924. <isNotNull prepend="," property="yfyftswy" >
  925. #yfyftswy:VARCHAR#
  926. </isNotNull>
  927. <isNotNull prepend="," property="whhcllxr" >
  928. #whhcllxr:VARCHAR#
  929. </isNotNull>
  930. <isNotNull prepend="," property="whhcllxdh" >
  931. #whhcllxdh:VARCHAR#
  932. </isNotNull>
  933. <isNotNull prepend="," property="whhclrq1" >
  934. #whhclrq1:TIMESTAMP#
  935. </isNotNull>
  936. <isNotNull prepend="," property="whhclrq2" >
  937. #whhclrq2:TIMESTAMP#
  938. </isNotNull>
  939. <isNotNull prepend="," property="whhclrq3" >
  940. #whhclrq3:TIMESTAMP#
  941. </isNotNull>
  942. <isNotNull prepend="," property="whhclrq4" >
  943. #whhclrq4:TIMESTAMP#
  944. </isNotNull>
  945. <isNotNull prepend="," property="whhclrq5" >
  946. #whhclrq5:TIMESTAMP#
  947. </isNotNull>
  948. <isNotNull prepend="," property="whhclrq6" >
  949. #whhclrq6:TIMESTAMP#
  950. </isNotNull>
  951. <isNotNull prepend="," property="whhclfs1" >
  952. #whhclfs1:VARCHAR#
  953. </isNotNull>
  954. <isNotNull prepend="," property="whhclfs2" >
  955. #whhclfs2:VARCHAR#
  956. </isNotNull>
  957. <isNotNull prepend="," property="whhclfs3" >
  958. #whhclfs3:VARCHAR#
  959. </isNotNull>
  960. <isNotNull prepend="," property="whhclfs4" >
  961. #whhclfs4:VARCHAR#
  962. </isNotNull>
  963. <isNotNull prepend="," property="whhclfs5" >
  964. #whhclfs5:VARCHAR#
  965. </isNotNull>
  966. <isNotNull prepend="," property="whhclfs6" >
  967. #whhclfs6:VARCHAR#
  968. </isNotNull>
  969. <isNotNull prepend="," property="whhclsl1" >
  970. #whhclsl1:VARCHAR#
  971. </isNotNull>
  972. <isNotNull prepend="," property="whhclsl2" >
  973. #whhclsl2:VARCHAR#
  974. </isNotNull>
  975. <isNotNull prepend="," property="whhclsl3" >
  976. #whhclsl3:VARCHAR#
  977. </isNotNull>
  978. <isNotNull prepend="," property="whhclsl4" >
  979. #whhclsl4:VARCHAR#
  980. </isNotNull>
  981. <isNotNull prepend="," property="whhclsl5" >
  982. #whhclsl5:VARCHAR#
  983. </isNotNull>
  984. <isNotNull prepend="," property="whhclsl6" >
  985. #whhclsl6:VARCHAR#
  986. </isNotNull>
  987. <isNotNull prepend="," property="xssjsj1" >
  988. #xssjsj1:TIMESTAMP#
  989. </isNotNull>
  990. <isNotNull prepend="," property="xssjsj2" >
  991. #xssjsj2:TIMESTAMP#
  992. </isNotNull>
  993. <isNotNull prepend="," property="xssjsj3" >
  994. #xssjsj3:TIMESTAMP#
  995. </isNotNull>
  996. <isNotNull prepend="," property="xssjsj4" >
  997. #xssjsj4:TIMESTAMP#
  998. </isNotNull>
  999. <isNotNull prepend="," property="xssjsj5" >
  1000. #xssjsj5:TIMESTAMP#
  1001. </isNotNull>
  1002. <isNotNull prepend="," property="xssjsj6" >
  1003. #xssjsj6:TIMESTAMP#
  1004. </isNotNull>
  1005. <isNotNull prepend="," property="wscl1" >
  1006. #wscl1:VARCHAR#
  1007. </isNotNull>
  1008. <isNotNull prepend="," property="wscl2" >
  1009. #wscl2:VARCHAR#
  1010. </isNotNull>
  1011. <isNotNull prepend="," property="wscl3" >
  1012. #wscl3:VARCHAR#
  1013. </isNotNull>
  1014. <isNotNull prepend="," property="wscl4" >
  1015. #wscl4:VARCHAR#
  1016. </isNotNull>
  1017. <isNotNull prepend="," property="wscl5" >
  1018. #wscl5:VARCHAR#
  1019. </isNotNull>
  1020. <isNotNull prepend="," property="wscl6" >
  1021. #wscl6:VARCHAR#
  1022. </isNotNull>
  1023. <isNotNull prepend="," property="wscl7" >
  1024. #wscl7:VARCHAR#
  1025. </isNotNull>
  1026. <isNotNull prepend="," property="sbtj1" >
  1027. #sbtj1:VARCHAR#
  1028. </isNotNull>
  1029. <isNotNull prepend="," property="sbtj2" >
  1030. #sbtj2:VARCHAR#
  1031. </isNotNull>
  1032. <isNotNull prepend="," property="sbtj3" >
  1033. #sbtj3:VARCHAR#
  1034. </isNotNull>
  1035. <isNotNull prepend="," property="sbtj4" >
  1036. #sbtj4:VARCHAR#
  1037. </isNotNull>
  1038. <isNotNull prepend="," property="sbtj5" >
  1039. #sbtj5:VARCHAR#
  1040. </isNotNull>
  1041. <isNotNull prepend="," property="sbtj6" >
  1042. #sbtj6:VARCHAR#
  1043. </isNotNull>
  1044. <isNotNull prepend="," property="sbtj7" >
  1045. #sbtj7:VARCHAR#
  1046. </isNotNull>
  1047. <isNotNull prepend="," property="sbtjjn" >
  1048. #sbtjjn:VARCHAR#
  1049. </isNotNull>
  1050. <isNotNull prepend="," property="sbtjqn" >
  1051. #sbtjqn:VARCHAR#
  1052. </isNotNull>
  1053. <isNotNull prepend="," property="dnzs" >
  1054. #dnzs:VARCHAR#
  1055. </isNotNull>
  1056. <isNotNull prepend="," property="dnws" >
  1057. #dnws:VARCHAR#
  1058. </isNotNull>
  1059. <isNotNull prepend="," property="gtjz" >
  1060. #gtjz:VARCHAR#
  1061. </isNotNull>
  1062. <isNotNull prepend="," property="wzhzs" >
  1063. #wzhzs:VARCHAR#
  1064. </isNotNull>
  1065. <isNotNull prepend="," property="yffbt6" >
  1066. #yffbt6:VARCHAR#
  1067. </isNotNull>
  1068. <isNotNull prepend="," property="yffbt7" >
  1069. #yffbt7:VARCHAR#
  1070. </isNotNull>
  1071. <isNotNull prepend="," property="bytts" >
  1072. #bytts:VARCHAR#
  1073. </isNotNull>
  1074. <isNotNull prepend="," property="yftts" >
  1075. #yftts:VARCHAR#
  1076. </isNotNull>
  1077. <isNotNull prepend="," property="byttszb" >
  1078. #byttszb:VARCHAR#
  1079. </isNotNull>
  1080. <isNotNull prepend="," property="qyyttszb" >
  1081. #qyyttszb:VARCHAR#
  1082. </isNotNull>
  1083. <isNotNull prepend="," property="qeyttszb" >
  1084. #qeyttszb:VARCHAR#
  1085. </isNotNull>
  1086. <isNotNull prepend="," property="qsyttszb" >
  1087. #qsyttszb:VARCHAR#
  1088. </isNotNull>
  1089. <isNotNull prepend="," property="mztts" >
  1090. #mztts:VARCHAR#
  1091. </isNotNull>
  1092. <isNotNull prepend="," property="gztts" >
  1093. #gztts:VARCHAR#
  1094. </isNotNull>
  1095. <isNotNull prepend="," property="week1" >
  1096. #week1:INTEGER#
  1097. </isNotNull>
  1098. <isNotNull prepend="," property="week2" >
  1099. #week2:INTEGER#
  1100. </isNotNull>
  1101. <isNotNull prepend="," property="week3" >
  1102. #week3:INTEGER#
  1103. </isNotNull>
  1104. <isNotNull prepend="," property="week4" >
  1105. #week4:INTEGER#
  1106. </isNotNull>
  1107. <isNotNull prepend="," property="week5" >
  1108. #week5:INTEGER#
  1109. </isNotNull>
  1110. <isNotNull prepend="," property="week6" >
  1111. #week6:INTEGER#
  1112. </isNotNull>
  1113. <isNotNull prepend="," property="week7" >
  1114. #week7:INTEGER#
  1115. </isNotNull>
  1116. <isNotNull prepend="," property="weekprice1" >
  1117. #weekprice1:VARCHAR#
  1118. </isNotNull>
  1119. <isNotNull prepend="," property="weekprice2" >
  1120. #weekprice2:VARCHAR#
  1121. </isNotNull>
  1122. <isNotNull prepend="," property="weekprice3" >
  1123. #weekprice3:VARCHAR#
  1124. </isNotNull>
  1125. <isNotNull prepend="," property="weekprice4" >
  1126. #weekprice4:VARCHAR#
  1127. </isNotNull>
  1128. <isNotNull prepend="," property="weekprice5" >
  1129. #weekprice5:VARCHAR#
  1130. </isNotNull>
  1131. <isNotNull prepend="," property="weekprice6" >
  1132. #weekprice6:VARCHAR#
  1133. </isNotNull>
  1134. <isNotNull prepend="," property="weekprice7" >
  1135. #weekprice7:VARCHAR#
  1136. </isNotNull>
  1137. )
  1138. </dynamic>
  1139. </insert>
  1140. <select id="ibatorgenerated_countByExample" parameterClass="com.huimv.dp.dataobject.DpSjlrsyExample" resultClass="java.lang.Integer" >
  1141. <!--
  1142. WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
  1143. This element was generated on Fri Aug 02 14:27:27 CST 2019.
  1144. -->
  1145. select count(*) from dp_sjlr_sy
  1146. <include refid="dp_sjlr_sy.ibatorgenerated_Example_Where_Clause" />
  1147. </select>
  1148. <update id="ibatorgenerated_updateByExampleSelective" >
  1149. <!--
  1150. WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
  1151. This element was generated on Fri Aug 02 14:27:27 CST 2019.
  1152. -->
  1153. update dp_sjlr_sy
  1154. <dynamic prepend="set" >
  1155. <isNotNull prepend="," property="record.id" >
  1156. ID = #record.id:INTEGER#
  1157. </isNotNull>
  1158. <isNotNull prepend="," property="record.mcid" >
  1159. MCID = #record.mcid:INTEGER#
  1160. </isNotNull>
  1161. <isNotNull prepend="," property="record.clsjyxs" >
  1162. CLSJYXS = #record.clsjyxs:VARCHAR#
  1163. </isNotNull>
  1164. <isNotNull prepend="," property="record.clsjyst" >
  1165. CLSJYST = #record.clsjyst:VARCHAR#
  1166. </isNotNull>
  1167. <isNotNull prepend="," property="record.clsjzz" >
  1168. CLSJZZ = #record.clsjzz:VARCHAR#
  1169. </isNotNull>
  1170. <isNotNull prepend="," property="record.clsjhbzz" >
  1171. CLSJHBZZ = #record.clsjhbzz:VARCHAR#
  1172. </isNotNull>
  1173. <isNotNull prepend="," property="record.clsjbrz" >
  1174. CLSJBRZ = #record.clsjbrz:VARCHAR#
  1175. </isNotNull>
  1176. <isNotNull prepend="," property="record.clsjbyz" >
  1177. CLSJBYZ = #record.clsjbyz:VARCHAR#
  1178. </isNotNull>
  1179. <isNotNull prepend="," property="record.clsjyfz" >
  1180. CLSJYFZ = #record.clsjyfz:VARCHAR#
  1181. </isNotNull>
  1182. <isNotNull prepend="," property="record.clsjxszs" >
  1183. CLSJXSZS = #record.clsjxszs:VARCHAR#
  1184. </isNotNull>
  1185. <isNotNull prepend="," property="record.clsjstzs" >
  1186. CLSJSTZS = #record.clsjstzs:VARCHAR#
  1187. </isNotNull>
  1188. <isNotNull prepend="," property="record.bypzs" >
  1189. BYPZS = #record.bypzs:VARCHAR#
  1190. </isNotNull>
  1191. <isNotNull prepend="," property="record.byfms" >
  1192. BYFMS = #record.byfms:VARCHAR#
  1193. </isNotNull>
  1194. <isNotNull prepend="," property="record.byczs" >
  1195. BYCZS = #record.byczs:VARCHAR#
  1196. </isNotNull>
  1197. <isNotNull prepend="," property="record.bydqxsts" >
  1198. BYDQXSTS = #record.bydqxsts:VARCHAR#
  1199. </isNotNull>
  1200. <isNotNull prepend="," property="record.bydqzj" >
  1201. BYDQZJ = #record.bydqzj:VARCHAR#
  1202. </isNotNull>
  1203. <isNotNull prepend="," property="record.byzzchl" >
  1204. BYZZCHL = #record.byzzchl:VARCHAR#
  1205. </isNotNull>
  1206. <isNotNull prepend="," property="record.ttsjbytts" >
  1207. TTSJBYTTS = #record.ttsjbytts:VARCHAR#
  1208. </isNotNull>
  1209. <isNotNull prepend="," property="record.ttsjqyytts" >
  1210. TTSJQYYTTS = #record.ttsjqyytts:VARCHAR#
  1211. </isNotNull>
  1212. <isNotNull prepend="," property="record.ttsjqeytts" >
  1213. TTSJQEYTTS = #record.ttsjqeytts:VARCHAR#
  1214. </isNotNull>
  1215. <isNotNull prepend="," property="record.ttsjzz" >
  1216. TTSJZZ = #record.ttsjzz:VARCHAR#
  1217. </isNotNull>
  1218. <isNotNull prepend="," property="record.ttsjfz" >
  1219. TTSJFZ = #record.ttsjfz:VARCHAR#
  1220. </isNotNull>
  1221. <isNotNull prepend="," property="record.ttsjqsytts" >
  1222. TTSJQSYTTS = #record.ttsjqsytts:VARCHAR#
  1223. </isNotNull>
  1224. <isNotNull prepend="," property="record.xssjweek" >
  1225. XSSJWEEK = #record.xssjweek:VARCHAR#
  1226. </isNotNull>
  1227. <isNotNull prepend="," property="record.xssjmonth" >
  1228. XSSJMONTH = #record.xssjmonth:VARCHAR#
  1229. </isNotNull>
  1230. <isNotNull prepend="," property="record.xssjyear" >
  1231. XSSJYEAR = #record.xssjyear:VARCHAR#
  1232. </isNotNull>
  1233. <isNotNull prepend="," property="record.pzjgfbpz" >
  1234. PZJGFBPZ = #record.pzjgfbpz:VARCHAR#
  1235. </isNotNull>
  1236. <isNotNull prepend="," property="record.pzjgfbhy" >
  1237. PZJGFBHY = #record.pzjgfbhy:VARCHAR#
  1238. </isNotNull>
  1239. <isNotNull prepend="," property="record.pzjgfblc" >
  1240. PZJGFBLC = #record.pzjgfblc:VARCHAR#
  1241. </isNotNull>
  1242. <isNotNull prepend="," property="record.pzjgfbfq" >
  1243. PZJGFBFQ = #record.pzjgfbfq:VARCHAR#
  1244. </isNotNull>
  1245. <isNotNull prepend="," property="record.pzjgfbqt" >
  1246. PZJGFBQT = #record.pzjgfbqt:VARCHAR#
  1247. </isNotNull>
  1248. <isNotNull prepend="," property="record.pzjgfbpzfml" >
  1249. PZJGFBPZFML = #record.pzjgfbpzfml:VARCHAR#
  1250. </isNotNull>
  1251. <isNotNull prepend="," property="record.fmzzfbtjzs" >
  1252. FMZZFBTJZS = #record.fmzzfbtjzs:VARCHAR#
  1253. </isNotNull>
  1254. <isNotNull prepend="," property="record.fmzzfbtrzs" >
  1255. FMZZFBTRZS = #record.fmzzfbtrzs:VARCHAR#
  1256. </isNotNull>
  1257. <isNotNull prepend="," property="record.fmzzfbtjxs" >
  1258. FMZZFBTJXS = #record.fmzzfbtjxs:VARCHAR#
  1259. </isNotNull>
  1260. <isNotNull prepend="," property="record.fmzzfbtmnys" >
  1261. FMZZFBTMNYS = #record.fmzzfbtmnys:VARCHAR#
  1262. </isNotNull>
  1263. <isNotNull prepend="," property="record.fmzzfbtsts" >
  1264. FMZZFBTSTS = #record.fmzzfbtsts:VARCHAR#
  1265. </isNotNull>
  1266. <isNotNull prepend="," property="record.fmzzfbtfmchl" >
  1267. FMZZFBTFMCHL = #record.fmzzfbtfmchl:VARCHAR#
  1268. </isNotNull>
  1269. <isNotNull prepend="," property="record.ttfbtsw" >
  1270. TTFBTSW = #record.ttfbtsw:VARCHAR#
  1271. </isNotNull>
  1272. <isNotNull prepend="," property="record.ttfbttctg" >
  1273. TTFBTTCTG = #record.ttfbttctg:VARCHAR#
  1274. </isNotNull>
  1275. <isNotNull prepend="," property="record.ttfbtcqbfq" >
  1276. TTFBTCQBFQ = #record.ttfbtcqbfq:VARCHAR#
  1277. </isNotNull>
  1278. <isNotNull prepend="," property="record.ttfbtczss" >
  1279. TTFBTCZSS = #record.ttfbtczss:VARCHAR#
  1280. </isNotNull>
  1281. <isNotNull prepend="," property="record.ttfbtcdyz" >
  1282. TTFBTCDYZ = #record.ttfbtcdyz:VARCHAR#
  1283. </isNotNull>
  1284. <isNotNull prepend="," property="record.ttfbtyybl" >
  1285. TTFBTYYBL = #record.ttfbtyybl:VARCHAR#
  1286. </isNotNull>
  1287. <isNotNull prepend="," property="record.ttfbtztjb" >
  1288. TTFBTZTJB = #record.ttfbtztjb:VARCHAR#
  1289. </isNotNull>
  1290. <isNotNull prepend="," property="record.ttfbtqt" >
  1291. TTFBTQT = #record.ttfbtqt:VARCHAR#
  1292. </isNotNull>
  1293. <isNotNull prepend="," property="record.ydtts1" >
  1294. YDTTS1 = #record.ydtts1:VARCHAR#
  1295. </isNotNull>
  1296. <isNotNull prepend="," property="record.ydtts2" >
  1297. YDTTS2 = #record.ydtts2:VARCHAR#
  1298. </isNotNull>
  1299. <isNotNull prepend="," property="record.ydtts3" >
  1300. YDTTS3 = #record.ydtts3:VARCHAR#
  1301. </isNotNull>
  1302. <isNotNull prepend="," property="record.ydtts4" >
  1303. YDTTS4 = #record.ydtts4:VARCHAR#
  1304. </isNotNull>
  1305. <isNotNull prepend="," property="record.ydtts5" >
  1306. YDTTS5 = #record.ydtts5:VARCHAR#
  1307. </isNotNull>
  1308. <isNotNull prepend="," property="record.ydtts6" >
  1309. YDTTS6 = #record.ydtts6:VARCHAR#
  1310. </isNotNull>
  1311. <isNotNull prepend="," property="record.ydtts7" >
  1312. YDTTS7 = #record.ydtts7:VARCHAR#
  1313. </isNotNull>
  1314. <isNotNull prepend="," property="record.ydtts8" >
  1315. YDTTS8 = #record.ydtts8:VARCHAR#
  1316. </isNotNull>
  1317. <isNotNull prepend="," property="record.ydtts9" >
  1318. YDTTS9 = #record.ydtts9:VARCHAR#
  1319. </isNotNull>
  1320. <isNotNull prepend="," property="record.ydtts10" >
  1321. YDTTS10 = #record.ydtts10:VARCHAR#
  1322. </isNotNull>
  1323. <isNotNull prepend="," property="record.ydtts11" >
  1324. YDTTS11 = #record.ydtts11:VARCHAR#
  1325. </isNotNull>
  1326. <isNotNull prepend="," property="record.ydtts12" >
  1327. YDTTS12 = #record.ydtts12:VARCHAR#
  1328. </isNotNull>
  1329. <isNotNull prepend="," property="record.yffbt1" >
  1330. YFFBT1 = #record.yffbt1:VARCHAR#
  1331. </isNotNull>
  1332. <isNotNull prepend="," property="record.yffbt2" >
  1333. YFFBT2 = #record.yffbt2:VARCHAR#
  1334. </isNotNull>
  1335. <isNotNull prepend="," property="record.yffbt3" >
  1336. YFFBT3 = #record.yffbt3:VARCHAR#
  1337. </isNotNull>
  1338. <isNotNull prepend="," property="record.yffbt4" >
  1339. YFFBT4 = #record.yffbt4:VARCHAR#
  1340. </isNotNull>
  1341. <isNotNull prepend="," property="record.yffbt5" >
  1342. YFFBT5 = #record.yffbt5:VARCHAR#
  1343. </isNotNull>
  1344. <isNotNull prepend="," property="record.yfyftsyy" >
  1345. YFYFTSYY = #record.yfyftsyy:VARCHAR#
  1346. </isNotNull>
  1347. <isNotNull prepend="," property="record.yfyftsey" >
  1348. YFYFTSEY = #record.yfyftsey:VARCHAR#
  1349. </isNotNull>
  1350. <isNotNull prepend="," property="record.yfyftssy" >
  1351. YFYFTSSY = #record.yfyftssy:VARCHAR#
  1352. </isNotNull>
  1353. <isNotNull prepend="," property="record.yfyftssiy" >
  1354. YFYFTSSIY = #record.yfyftssiy:VARCHAR#
  1355. </isNotNull>
  1356. <isNotNull prepend="," property="record.yfyftswy" >
  1357. YFYFTSWY = #record.yfyftswy:VARCHAR#
  1358. </isNotNull>
  1359. <isNotNull prepend="," property="record.whhcllxr" >
  1360. WHHCLLXR = #record.whhcllxr:VARCHAR#
  1361. </isNotNull>
  1362. <isNotNull prepend="," property="record.whhcllxdh" >
  1363. WHHCLLXDH = #record.whhcllxdh:VARCHAR#
  1364. </isNotNull>
  1365. <isNotNull prepend="," property="record.whhclrq1" >
  1366. WHHCLRQ1 = #record.whhclrq1:TIMESTAMP#
  1367. </isNotNull>
  1368. <isNotNull prepend="," property="record.whhclrq2" >
  1369. WHHCLRQ2 = #record.whhclrq2:TIMESTAMP#
  1370. </isNotNull>
  1371. <isNotNull prepend="," property="record.whhclrq3" >
  1372. WHHCLRQ3 = #record.whhclrq3:TIMESTAMP#
  1373. </isNotNull>
  1374. <isNotNull prepend="," property="record.whhclrq4" >
  1375. WHHCLRQ4 = #record.whhclrq4:TIMESTAMP#
  1376. </isNotNull>
  1377. <isNotNull prepend="," property="record.whhclrq5" >
  1378. WHHCLRQ5 = #record.whhclrq5:TIMESTAMP#
  1379. </isNotNull>
  1380. <isNotNull prepend="," property="record.whhclrq6" >
  1381. WHHCLRQ6 = #record.whhclrq6:TIMESTAMP#
  1382. </isNotNull>
  1383. <isNotNull prepend="," property="record.whhclfs1" >
  1384. WHHCLFS1 = #record.whhclfs1:VARCHAR#
  1385. </isNotNull>
  1386. <isNotNull prepend="," property="record.whhclfs2" >
  1387. WHHCLFS2 = #record.whhclfs2:VARCHAR#
  1388. </isNotNull>
  1389. <isNotNull prepend="," property="record.whhclfs3" >
  1390. WHHCLFS3 = #record.whhclfs3:VARCHAR#
  1391. </isNotNull>
  1392. <isNotNull prepend="," property="record.whhclfs4" >
  1393. WHHCLFS4 = #record.whhclfs4:VARCHAR#
  1394. </isNotNull>
  1395. <isNotNull prepend="," property="record.whhclfs5" >
  1396. WHHCLFS5 = #record.whhclfs5:VARCHAR#
  1397. </isNotNull>
  1398. <isNotNull prepend="," property="record.whhclfs6" >
  1399. WHHCLFS6 = #record.whhclfs6:VARCHAR#
  1400. </isNotNull>
  1401. <isNotNull prepend="," property="record.whhclsl1" >
  1402. WHHCLSL1 = #record.whhclsl1:VARCHAR#
  1403. </isNotNull>
  1404. <isNotNull prepend="," property="record.whhclsl2" >
  1405. WHHCLSL2 = #record.whhclsl2:VARCHAR#
  1406. </isNotNull>
  1407. <isNotNull prepend="," property="record.whhclsl3" >
  1408. WHHCLSL3 = #record.whhclsl3:VARCHAR#
  1409. </isNotNull>
  1410. <isNotNull prepend="," property="record.whhclsl4" >
  1411. WHHCLSL4 = #record.whhclsl4:VARCHAR#
  1412. </isNotNull>
  1413. <isNotNull prepend="," property="record.whhclsl5" >
  1414. WHHCLSL5 = #record.whhclsl5:VARCHAR#
  1415. </isNotNull>
  1416. <isNotNull prepend="," property="record.whhclsl6" >
  1417. WHHCLSL6 = #record.whhclsl6:VARCHAR#
  1418. </isNotNull>
  1419. <isNotNull prepend="," property="record.xssjsj1" >
  1420. XSSJSJ1 = #record.xssjsj1:TIMESTAMP#
  1421. </isNotNull>
  1422. <isNotNull prepend="," property="record.xssjsj2" >
  1423. XSSJSJ2 = #record.xssjsj2:TIMESTAMP#
  1424. </isNotNull>
  1425. <isNotNull prepend="," property="record.xssjsj3" >
  1426. XSSJSJ3 = #record.xssjsj3:TIMESTAMP#
  1427. </isNotNull>
  1428. <isNotNull prepend="," property="record.xssjsj4" >
  1429. XSSJSJ4 = #record.xssjsj4:TIMESTAMP#
  1430. </isNotNull>
  1431. <isNotNull prepend="," property="record.xssjsj5" >
  1432. XSSJSJ5 = #record.xssjsj5:TIMESTAMP#
  1433. </isNotNull>
  1434. <isNotNull prepend="," property="record.xssjsj6" >
  1435. XSSJSJ6 = #record.xssjsj6:TIMESTAMP#
  1436. </isNotNull>
  1437. <isNotNull prepend="," property="record.wscl1" >
  1438. WSCL1 = #record.wscl1:VARCHAR#
  1439. </isNotNull>
  1440. <isNotNull prepend="," property="record.wscl2" >
  1441. WSCL2 = #record.wscl2:VARCHAR#
  1442. </isNotNull>
  1443. <isNotNull prepend="," property="record.wscl3" >
  1444. WSCL3 = #record.wscl3:VARCHAR#
  1445. </isNotNull>
  1446. <isNotNull prepend="," property="record.wscl4" >
  1447. WSCL4 = #record.wscl4:VARCHAR#
  1448. </isNotNull>
  1449. <isNotNull prepend="," property="record.wscl5" >
  1450. WSCL5 = #record.wscl5:VARCHAR#
  1451. </isNotNull>
  1452. <isNotNull prepend="," property="record.wscl6" >
  1453. WSCL6 = #record.wscl6:VARCHAR#
  1454. </isNotNull>
  1455. <isNotNull prepend="," property="record.wscl7" >
  1456. WSCL7 = #record.wscl7:VARCHAR#
  1457. </isNotNull>
  1458. <isNotNull prepend="," property="record.sbtj1" >
  1459. SBTJ1 = #record.sbtj1:VARCHAR#
  1460. </isNotNull>
  1461. <isNotNull prepend="," property="record.sbtj2" >
  1462. SBTJ2 = #record.sbtj2:VARCHAR#
  1463. </isNotNull>
  1464. <isNotNull prepend="," property="record.sbtj3" >
  1465. SBTJ3 = #record.sbtj3:VARCHAR#
  1466. </isNotNull>
  1467. <isNotNull prepend="," property="record.sbtj4" >
  1468. SBTJ4 = #record.sbtj4:VARCHAR#
  1469. </isNotNull>
  1470. <isNotNull prepend="," property="record.sbtj5" >
  1471. SBTJ5 = #record.sbtj5:VARCHAR#
  1472. </isNotNull>
  1473. <isNotNull prepend="," property="record.sbtj6" >
  1474. SBTJ6 = #record.sbtj6:VARCHAR#
  1475. </isNotNull>
  1476. <isNotNull prepend="," property="record.sbtj7" >
  1477. SBTJ7 = #record.sbtj7:VARCHAR#
  1478. </isNotNull>
  1479. <isNotNull prepend="," property="record.sbtjjn" >
  1480. SBTJJN = #record.sbtjjn:VARCHAR#
  1481. </isNotNull>
  1482. <isNotNull prepend="," property="record.sbtjqn" >
  1483. SBTJQN = #record.sbtjqn:VARCHAR#
  1484. </isNotNull>
  1485. <isNotNull prepend="," property="record.dnzs" >
  1486. DNZS = #record.dnzs:VARCHAR#
  1487. </isNotNull>
  1488. <isNotNull prepend="," property="record.dnws" >
  1489. DNWS = #record.dnws:VARCHAR#
  1490. </isNotNull>
  1491. <isNotNull prepend="," property="record.gtjz" >
  1492. GTJZ = #record.gtjz:VARCHAR#
  1493. </isNotNull>
  1494. <isNotNull prepend="," property="record.wzhzs" >
  1495. WZHZS = #record.wzhzs:VARCHAR#
  1496. </isNotNull>
  1497. <isNotNull prepend="," property="record.yffbt6" >
  1498. YFFBT6 = #record.yffbt6:VARCHAR#
  1499. </isNotNull>
  1500. <isNotNull prepend="," property="record.yffbt7" >
  1501. YFFBT7 = #record.yffbt7:VARCHAR#
  1502. </isNotNull>
  1503. <isNotNull prepend="," property="record.bytts" >
  1504. BYTTS = #record.bytts:VARCHAR#
  1505. </isNotNull>
  1506. <isNotNull prepend="," property="record.yftts" >
  1507. YFTTS = #record.yftts:VARCHAR#
  1508. </isNotNull>
  1509. <isNotNull prepend="," property="record.byttszb" >
  1510. BYTTSZB = #record.byttszb:VARCHAR#
  1511. </isNotNull>
  1512. <isNotNull prepend="," property="record.qyyttszb" >
  1513. QYYTTSZB = #record.qyyttszb:VARCHAR#
  1514. </isNotNull>
  1515. <isNotNull prepend="," property="record.qeyttszb" >
  1516. QEYTTSZB = #record.qeyttszb:VARCHAR#
  1517. </isNotNull>
  1518. <isNotNull prepend="," property="record.qsyttszb" >
  1519. QSYTTSZB = #record.qsyttszb:VARCHAR#
  1520. </isNotNull>
  1521. <isNotNull prepend="," property="record.mztts" >
  1522. MZTTS = #record.mztts:VARCHAR#
  1523. </isNotNull>
  1524. <isNotNull prepend="," property="record.gztts" >
  1525. GZTTS = #record.gztts:VARCHAR#
  1526. </isNotNull>
  1527. <isNotNull prepend="," property="record.week1" >
  1528. WEEK1 = #record.week1:INTEGER#
  1529. </isNotNull>
  1530. <isNotNull prepend="," property="record.week2" >
  1531. WEEK2 = #record.week2:INTEGER#
  1532. </isNotNull>
  1533. <isNotNull prepend="," property="record.week3" >
  1534. WEEK3 = #record.week3:INTEGER#
  1535. </isNotNull>
  1536. <isNotNull prepend="," property="record.week4" >
  1537. WEEK4 = #record.week4:INTEGER#
  1538. </isNotNull>
  1539. <isNotNull prepend="," property="record.week5" >
  1540. WEEK5 = #record.week5:INTEGER#
  1541. </isNotNull>
  1542. <isNotNull prepend="," property="record.week6" >
  1543. WEEK6 = #record.week6:INTEGER#
  1544. </isNotNull>
  1545. <isNotNull prepend="," property="record.week7" >
  1546. WEEK7 = #record.week7:INTEGER#
  1547. </isNotNull>
  1548. <isNotNull prepend="," property="record.weekprice1" >
  1549. WEEKPRICE1 = #record.weekprice1:VARCHAR#
  1550. </isNotNull>
  1551. <isNotNull prepend="," property="record.weekprice2" >
  1552. WEEKPRICE2 = #record.weekprice2:VARCHAR#
  1553. </isNotNull>
  1554. <isNotNull prepend="," property="record.weekprice3" >
  1555. WEEKPRICE3 = #record.weekprice3:VARCHAR#
  1556. </isNotNull>
  1557. <isNotNull prepend="," property="record.weekprice4" >
  1558. WEEKPRICE4 = #record.weekprice4:VARCHAR#
  1559. </isNotNull>
  1560. <isNotNull prepend="," property="record.weekprice5" >
  1561. WEEKPRICE5 = #record.weekprice5:VARCHAR#
  1562. </isNotNull>
  1563. <isNotNull prepend="," property="record.weekprice6" >
  1564. WEEKPRICE6 = #record.weekprice6:VARCHAR#
  1565. </isNotNull>
  1566. <isNotNull prepend="," property="record.weekprice7" >
  1567. WEEKPRICE7 = #record.weekprice7:VARCHAR#
  1568. </isNotNull>
  1569. </dynamic>
  1570. <isParameterPresent >
  1571. <include refid="dp_sjlr_sy.ibatorgenerated_Example_Where_Clause" />
  1572. </isParameterPresent>
  1573. </update>
  1574. <update id="ibatorgenerated_updateByExample" >
  1575. <!--
  1576. WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
  1577. This element was generated on Fri Aug 02 14:27:27 CST 2019.
  1578. -->
  1579. update dp_sjlr_sy
  1580. set ID = #record.id:INTEGER#,
  1581. MCID = #record.mcid:INTEGER#,
  1582. CLSJYXS = #record.clsjyxs:VARCHAR#,
  1583. CLSJYST = #record.clsjyst:VARCHAR#,
  1584. CLSJZZ = #record.clsjzz:VARCHAR#,
  1585. CLSJHBZZ = #record.clsjhbzz:VARCHAR#,
  1586. CLSJBRZ = #record.clsjbrz:VARCHAR#,
  1587. CLSJBYZ = #record.clsjbyz:VARCHAR#,
  1588. CLSJYFZ = #record.clsjyfz:VARCHAR#,
  1589. CLSJXSZS = #record.clsjxszs:VARCHAR#,
  1590. CLSJSTZS = #record.clsjstzs:VARCHAR#,
  1591. BYPZS = #record.bypzs:VARCHAR#,
  1592. BYFMS = #record.byfms:VARCHAR#,
  1593. BYCZS = #record.byczs:VARCHAR#,
  1594. BYDQXSTS = #record.bydqxsts:VARCHAR#,
  1595. BYDQZJ = #record.bydqzj:VARCHAR#,
  1596. BYZZCHL = #record.byzzchl:VARCHAR#,
  1597. TTSJBYTTS = #record.ttsjbytts:VARCHAR#,
  1598. TTSJQYYTTS = #record.ttsjqyytts:VARCHAR#,
  1599. TTSJQEYTTS = #record.ttsjqeytts:VARCHAR#,
  1600. TTSJZZ = #record.ttsjzz:VARCHAR#,
  1601. TTSJFZ = #record.ttsjfz:VARCHAR#,
  1602. TTSJQSYTTS = #record.ttsjqsytts:VARCHAR#,
  1603. XSSJWEEK = #record.xssjweek:VARCHAR#,
  1604. XSSJMONTH = #record.xssjmonth:VARCHAR#,
  1605. XSSJYEAR = #record.xssjyear:VARCHAR#,
  1606. PZJGFBPZ = #record.pzjgfbpz:VARCHAR#,
  1607. PZJGFBHY = #record.pzjgfbhy:VARCHAR#,
  1608. PZJGFBLC = #record.pzjgfblc:VARCHAR#,
  1609. PZJGFBFQ = #record.pzjgfbfq:VARCHAR#,
  1610. PZJGFBQT = #record.pzjgfbqt:VARCHAR#,
  1611. PZJGFBPZFML = #record.pzjgfbpzfml:VARCHAR#,
  1612. FMZZFBTJZS = #record.fmzzfbtjzs:VARCHAR#,
  1613. FMZZFBTRZS = #record.fmzzfbtrzs:VARCHAR#,
  1614. FMZZFBTJXS = #record.fmzzfbtjxs:VARCHAR#,
  1615. FMZZFBTMNYS = #record.fmzzfbtmnys:VARCHAR#,
  1616. FMZZFBTSTS = #record.fmzzfbtsts:VARCHAR#,
  1617. FMZZFBTFMCHL = #record.fmzzfbtfmchl:VARCHAR#,
  1618. TTFBTSW = #record.ttfbtsw:VARCHAR#,
  1619. TTFBTTCTG = #record.ttfbttctg:VARCHAR#,
  1620. TTFBTCQBFQ = #record.ttfbtcqbfq:VARCHAR#,
  1621. TTFBTCZSS = #record.ttfbtczss:VARCHAR#,
  1622. TTFBTCDYZ = #record.ttfbtcdyz:VARCHAR#,
  1623. TTFBTYYBL = #record.ttfbtyybl:VARCHAR#,
  1624. TTFBTZTJB = #record.ttfbtztjb:VARCHAR#,
  1625. TTFBTQT = #record.ttfbtqt:VARCHAR#,
  1626. YDTTS1 = #record.ydtts1:VARCHAR#,
  1627. YDTTS2 = #record.ydtts2:VARCHAR#,
  1628. YDTTS3 = #record.ydtts3:VARCHAR#,
  1629. YDTTS4 = #record.ydtts4:VARCHAR#,
  1630. YDTTS5 = #record.ydtts5:VARCHAR#,
  1631. YDTTS6 = #record.ydtts6:VARCHAR#,
  1632. YDTTS7 = #record.ydtts7:VARCHAR#,
  1633. YDTTS8 = #record.ydtts8:VARCHAR#,
  1634. YDTTS9 = #record.ydtts9:VARCHAR#,
  1635. YDTTS10 = #record.ydtts10:VARCHAR#,
  1636. YDTTS11 = #record.ydtts11:VARCHAR#,
  1637. YDTTS12 = #record.ydtts12:VARCHAR#,
  1638. YFFBT1 = #record.yffbt1:VARCHAR#,
  1639. YFFBT2 = #record.yffbt2:VARCHAR#,
  1640. YFFBT3 = #record.yffbt3:VARCHAR#,
  1641. YFFBT4 = #record.yffbt4:VARCHAR#,
  1642. YFFBT5 = #record.yffbt5:VARCHAR#,
  1643. YFYFTSYY = #record.yfyftsyy:VARCHAR#,
  1644. YFYFTSEY = #record.yfyftsey:VARCHAR#,
  1645. YFYFTSSY = #record.yfyftssy:VARCHAR#,
  1646. YFYFTSSIY = #record.yfyftssiy:VARCHAR#,
  1647. YFYFTSWY = #record.yfyftswy:VARCHAR#,
  1648. WHHCLLXR = #record.whhcllxr:VARCHAR#,
  1649. WHHCLLXDH = #record.whhcllxdh:VARCHAR#,
  1650. WHHCLRQ1 = #record.whhclrq1:TIMESTAMP#,
  1651. WHHCLRQ2 = #record.whhclrq2:TIMESTAMP#,
  1652. WHHCLRQ3 = #record.whhclrq3:TIMESTAMP#,
  1653. WHHCLRQ4 = #record.whhclrq4:TIMESTAMP#,
  1654. WHHCLRQ5 = #record.whhclrq5:TIMESTAMP#,
  1655. WHHCLRQ6 = #record.whhclrq6:TIMESTAMP#,
  1656. WHHCLFS1 = #record.whhclfs1:VARCHAR#,
  1657. WHHCLFS2 = #record.whhclfs2:VARCHAR#,
  1658. WHHCLFS3 = #record.whhclfs3:VARCHAR#,
  1659. WHHCLFS4 = #record.whhclfs4:VARCHAR#,
  1660. WHHCLFS5 = #record.whhclfs5:VARCHAR#,
  1661. WHHCLFS6 = #record.whhclfs6:VARCHAR#,
  1662. WHHCLSL1 = #record.whhclsl1:VARCHAR#,
  1663. WHHCLSL2 = #record.whhclsl2:VARCHAR#,
  1664. WHHCLSL3 = #record.whhclsl3:VARCHAR#,
  1665. WHHCLSL4 = #record.whhclsl4:VARCHAR#,
  1666. WHHCLSL5 = #record.whhclsl5:VARCHAR#,
  1667. WHHCLSL6 = #record.whhclsl6:VARCHAR#,
  1668. XSSJSJ1 = #record.xssjsj1:TIMESTAMP#,
  1669. XSSJSJ2 = #record.xssjsj2:TIMESTAMP#,
  1670. XSSJSJ3 = #record.xssjsj3:TIMESTAMP#,
  1671. XSSJSJ4 = #record.xssjsj4:TIMESTAMP#,
  1672. XSSJSJ5 = #record.xssjsj5:TIMESTAMP#,
  1673. XSSJSJ6 = #record.xssjsj6:TIMESTAMP#,
  1674. WSCL1 = #record.wscl1:VARCHAR#,
  1675. WSCL2 = #record.wscl2:VARCHAR#,
  1676. WSCL3 = #record.wscl3:VARCHAR#,
  1677. WSCL4 = #record.wscl4:VARCHAR#,
  1678. WSCL5 = #record.wscl5:VARCHAR#,
  1679. WSCL6 = #record.wscl6:VARCHAR#,
  1680. WSCL7 = #record.wscl7:VARCHAR#,
  1681. SBTJ1 = #record.sbtj1:VARCHAR#,
  1682. SBTJ2 = #record.sbtj2:VARCHAR#,
  1683. SBTJ3 = #record.sbtj3:VARCHAR#,
  1684. SBTJ4 = #record.sbtj4:VARCHAR#,
  1685. SBTJ5 = #record.sbtj5:VARCHAR#,
  1686. SBTJ6 = #record.sbtj6:VARCHAR#,
  1687. SBTJ7 = #record.sbtj7:VARCHAR#,
  1688. SBTJJN = #record.sbtjjn:VARCHAR#,
  1689. SBTJQN = #record.sbtjqn:VARCHAR#,
  1690. DNZS = #record.dnzs:VARCHAR#,
  1691. DNWS = #record.dnws:VARCHAR#,
  1692. GTJZ = #record.gtjz:VARCHAR#,
  1693. WZHZS = #record.wzhzs:VARCHAR#,
  1694. YFFBT6 = #record.yffbt6:VARCHAR#,
  1695. YFFBT7 = #record.yffbt7:VARCHAR#,
  1696. BYTTS = #record.bytts:VARCHAR#,
  1697. YFTTS = #record.yftts:VARCHAR#,
  1698. BYTTSZB = #record.byttszb:VARCHAR#,
  1699. QYYTTSZB = #record.qyyttszb:VARCHAR#,
  1700. QEYTTSZB = #record.qeyttszb:VARCHAR#,
  1701. QSYTTSZB = #record.qsyttszb:VARCHAR#,
  1702. MZTTS = #record.mztts:VARCHAR#,
  1703. GZTTS = #record.gztts:VARCHAR#,
  1704. WEEK1 = #record.week1:INTEGER#,
  1705. WEEK2 = #record.week2:INTEGER#,
  1706. WEEK3 = #record.week3:INTEGER#,
  1707. WEEK4 = #record.week4:INTEGER#,
  1708. WEEK5 = #record.week5:INTEGER#,
  1709. WEEK6 = #record.week6:INTEGER#,
  1710. WEEK7 = #record.week7:INTEGER#,
  1711. WEEKPRICE1 = #record.weekprice1:VARCHAR#,
  1712. WEEKPRICE2 = #record.weekprice2:VARCHAR#,
  1713. WEEKPRICE3 = #record.weekprice3:VARCHAR#,
  1714. WEEKPRICE4 = #record.weekprice4:VARCHAR#,
  1715. WEEKPRICE5 = #record.weekprice5:VARCHAR#,
  1716. WEEKPRICE6 = #record.weekprice6:VARCHAR#,
  1717. WEEKPRICE7 = #record.weekprice7:VARCHAR#
  1718. <isParameterPresent >
  1719. <include refid="dp_sjlr_sy.ibatorgenerated_Example_Where_Clause" />
  1720. </isParameterPresent>
  1721. </update>
  1722. <update id="ibatorgenerated_updateByPrimaryKeySelective" parameterClass="com.huimv.dp.dataobject.DpSjlrsy" >
  1723. <!--
  1724. WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
  1725. This element was generated on Fri Aug 02 14:27:27 CST 2019.
  1726. -->
  1727. update dp_sjlr_sy
  1728. <dynamic prepend="set" >
  1729. <isNotNull prepend="," property="mcid" >
  1730. MCID = #mcid:INTEGER#
  1731. </isNotNull>
  1732. <isNotNull prepend="," property="clsjyxs" >
  1733. CLSJYXS = #clsjyxs:VARCHAR#
  1734. </isNotNull>
  1735. <isNotNull prepend="," property="clsjyst" >
  1736. CLSJYST = #clsjyst:VARCHAR#
  1737. </isNotNull>
  1738. <isNotNull prepend="," property="clsjzz" >
  1739. CLSJZZ = #clsjzz:VARCHAR#
  1740. </isNotNull>
  1741. <isNotNull prepend="," property="clsjhbzz" >
  1742. CLSJHBZZ = #clsjhbzz:VARCHAR#
  1743. </isNotNull>
  1744. <isNotNull prepend="," property="clsjbrz" >
  1745. CLSJBRZ = #clsjbrz:VARCHAR#
  1746. </isNotNull>
  1747. <isNotNull prepend="," property="clsjbyz" >
  1748. CLSJBYZ = #clsjbyz:VARCHAR#
  1749. </isNotNull>
  1750. <isNotNull prepend="," property="clsjyfz" >
  1751. CLSJYFZ = #clsjyfz:VARCHAR#
  1752. </isNotNull>
  1753. <isNotNull prepend="," property="clsjxszs" >
  1754. CLSJXSZS = #clsjxszs:VARCHAR#
  1755. </isNotNull>
  1756. <isNotNull prepend="," property="clsjstzs" >
  1757. CLSJSTZS = #clsjstzs:VARCHAR#
  1758. </isNotNull>
  1759. <isNotNull prepend="," property="bypzs" >
  1760. BYPZS = #bypzs:VARCHAR#
  1761. </isNotNull>
  1762. <isNotNull prepend="," property="byfms" >
  1763. BYFMS = #byfms:VARCHAR#
  1764. </isNotNull>
  1765. <isNotNull prepend="," property="byczs" >
  1766. BYCZS = #byczs:VARCHAR#
  1767. </isNotNull>
  1768. <isNotNull prepend="," property="bydqxsts" >
  1769. BYDQXSTS = #bydqxsts:VARCHAR#
  1770. </isNotNull>
  1771. <isNotNull prepend="," property="bydqzj" >
  1772. BYDQZJ = #bydqzj:VARCHAR#
  1773. </isNotNull>
  1774. <isNotNull prepend="," property="byzzchl" >
  1775. BYZZCHL = #byzzchl:VARCHAR#
  1776. </isNotNull>
  1777. <isNotNull prepend="," property="ttsjbytts" >
  1778. TTSJBYTTS = #ttsjbytts:VARCHAR#
  1779. </isNotNull>
  1780. <isNotNull prepend="," property="ttsjqyytts" >
  1781. TTSJQYYTTS = #ttsjqyytts:VARCHAR#
  1782. </isNotNull>
  1783. <isNotNull prepend="," property="ttsjqeytts" >
  1784. TTSJQEYTTS = #ttsjqeytts:VARCHAR#
  1785. </isNotNull>
  1786. <isNotNull prepend="," property="ttsjzz" >
  1787. TTSJZZ = #ttsjzz:VARCHAR#
  1788. </isNotNull>
  1789. <isNotNull prepend="," property="ttsjfz" >
  1790. TTSJFZ = #ttsjfz:VARCHAR#
  1791. </isNotNull>
  1792. <isNotNull prepend="," property="ttsjqsytts" >
  1793. TTSJQSYTTS = #ttsjqsytts:VARCHAR#
  1794. </isNotNull>
  1795. <isNotNull prepend="," property="xssjweek" >
  1796. XSSJWEEK = #xssjweek:VARCHAR#
  1797. </isNotNull>
  1798. <isNotNull prepend="," property="xssjmonth" >
  1799. XSSJMONTH = #xssjmonth:VARCHAR#
  1800. </isNotNull>
  1801. <isNotNull prepend="," property="xssjyear" >
  1802. XSSJYEAR = #xssjyear:VARCHAR#
  1803. </isNotNull>
  1804. <isNotNull prepend="," property="pzjgfbpz" >
  1805. PZJGFBPZ = #pzjgfbpz:VARCHAR#
  1806. </isNotNull>
  1807. <isNotNull prepend="," property="pzjgfbhy" >
  1808. PZJGFBHY = #pzjgfbhy:VARCHAR#
  1809. </isNotNull>
  1810. <isNotNull prepend="," property="pzjgfblc" >
  1811. PZJGFBLC = #pzjgfblc:VARCHAR#
  1812. </isNotNull>
  1813. <isNotNull prepend="," property="pzjgfbfq" >
  1814. PZJGFBFQ = #pzjgfbfq:VARCHAR#
  1815. </isNotNull>
  1816. <isNotNull prepend="," property="pzjgfbqt" >
  1817. PZJGFBQT = #pzjgfbqt:VARCHAR#
  1818. </isNotNull>
  1819. <isNotNull prepend="," property="pzjgfbpzfml" >
  1820. PZJGFBPZFML = #pzjgfbpzfml:VARCHAR#
  1821. </isNotNull>
  1822. <isNotNull prepend="," property="fmzzfbtjzs" >
  1823. FMZZFBTJZS = #fmzzfbtjzs:VARCHAR#
  1824. </isNotNull>
  1825. <isNotNull prepend="," property="fmzzfbtrzs" >
  1826. FMZZFBTRZS = #fmzzfbtrzs:VARCHAR#
  1827. </isNotNull>
  1828. <isNotNull prepend="," property="fmzzfbtjxs" >
  1829. FMZZFBTJXS = #fmzzfbtjxs:VARCHAR#
  1830. </isNotNull>
  1831. <isNotNull prepend="," property="fmzzfbtmnys" >
  1832. FMZZFBTMNYS = #fmzzfbtmnys:VARCHAR#
  1833. </isNotNull>
  1834. <isNotNull prepend="," property="fmzzfbtsts" >
  1835. FMZZFBTSTS = #fmzzfbtsts:VARCHAR#
  1836. </isNotNull>
  1837. <isNotNull prepend="," property="fmzzfbtfmchl" >
  1838. FMZZFBTFMCHL = #fmzzfbtfmchl:VARCHAR#
  1839. </isNotNull>
  1840. <isNotNull prepend="," property="ttfbtsw" >
  1841. TTFBTSW = #ttfbtsw:VARCHAR#
  1842. </isNotNull>
  1843. <isNotNull prepend="," property="ttfbttctg" >
  1844. TTFBTTCTG = #ttfbttctg:VARCHAR#
  1845. </isNotNull>
  1846. <isNotNull prepend="," property="ttfbtcqbfq" >
  1847. TTFBTCQBFQ = #ttfbtcqbfq:VARCHAR#
  1848. </isNotNull>
  1849. <isNotNull prepend="," property="ttfbtczss" >
  1850. TTFBTCZSS = #ttfbtczss:VARCHAR#
  1851. </isNotNull>
  1852. <isNotNull prepend="," property="ttfbtcdyz" >
  1853. TTFBTCDYZ = #ttfbtcdyz:VARCHAR#
  1854. </isNotNull>
  1855. <isNotNull prepend="," property="ttfbtyybl" >
  1856. TTFBTYYBL = #ttfbtyybl:VARCHAR#
  1857. </isNotNull>
  1858. <isNotNull prepend="," property="ttfbtztjb" >
  1859. TTFBTZTJB = #ttfbtztjb:VARCHAR#
  1860. </isNotNull>
  1861. <isNotNull prepend="," property="ttfbtqt" >
  1862. TTFBTQT = #ttfbtqt:VARCHAR#
  1863. </isNotNull>
  1864. <isNotNull prepend="," property="ydtts1" >
  1865. YDTTS1 = #ydtts1:VARCHAR#
  1866. </isNotNull>
  1867. <isNotNull prepend="," property="ydtts2" >
  1868. YDTTS2 = #ydtts2:VARCHAR#
  1869. </isNotNull>
  1870. <isNotNull prepend="," property="ydtts3" >
  1871. YDTTS3 = #ydtts3:VARCHAR#
  1872. </isNotNull>
  1873. <isNotNull prepend="," property="ydtts4" >
  1874. YDTTS4 = #ydtts4:VARCHAR#
  1875. </isNotNull>
  1876. <isNotNull prepend="," property="ydtts5" >
  1877. YDTTS5 = #ydtts5:VARCHAR#
  1878. </isNotNull>
  1879. <isNotNull prepend="," property="ydtts6" >
  1880. YDTTS6 = #ydtts6:VARCHAR#
  1881. </isNotNull>
  1882. <isNotNull prepend="," property="ydtts7" >
  1883. YDTTS7 = #ydtts7:VARCHAR#
  1884. </isNotNull>
  1885. <isNotNull prepend="," property="ydtts8" >
  1886. YDTTS8 = #ydtts8:VARCHAR#
  1887. </isNotNull>
  1888. <isNotNull prepend="," property="ydtts9" >
  1889. YDTTS9 = #ydtts9:VARCHAR#
  1890. </isNotNull>
  1891. <isNotNull prepend="," property="ydtts10" >
  1892. YDTTS10 = #ydtts10:VARCHAR#
  1893. </isNotNull>
  1894. <isNotNull prepend="," property="ydtts11" >
  1895. YDTTS11 = #ydtts11:VARCHAR#
  1896. </isNotNull>
  1897. <isNotNull prepend="," property="ydtts12" >
  1898. YDTTS12 = #ydtts12:VARCHAR#
  1899. </isNotNull>
  1900. <isNotNull prepend="," property="yffbt1" >
  1901. YFFBT1 = #yffbt1:VARCHAR#
  1902. </isNotNull>
  1903. <isNotNull prepend="," property="yffbt2" >
  1904. YFFBT2 = #yffbt2:VARCHAR#
  1905. </isNotNull>
  1906. <isNotNull prepend="," property="yffbt3" >
  1907. YFFBT3 = #yffbt3:VARCHAR#
  1908. </isNotNull>
  1909. <isNotNull prepend="," property="yffbt4" >
  1910. YFFBT4 = #yffbt4:VARCHAR#
  1911. </isNotNull>
  1912. <isNotNull prepend="," property="yffbt5" >
  1913. YFFBT5 = #yffbt5:VARCHAR#
  1914. </isNotNull>
  1915. <isNotNull prepend="," property="yfyftsyy" >
  1916. YFYFTSYY = #yfyftsyy:VARCHAR#
  1917. </isNotNull>
  1918. <isNotNull prepend="," property="yfyftsey" >
  1919. YFYFTSEY = #yfyftsey:VARCHAR#
  1920. </isNotNull>
  1921. <isNotNull prepend="," property="yfyftssy" >
  1922. YFYFTSSY = #yfyftssy:VARCHAR#
  1923. </isNotNull>
  1924. <isNotNull prepend="," property="yfyftssiy" >
  1925. YFYFTSSIY = #yfyftssiy:VARCHAR#
  1926. </isNotNull>
  1927. <isNotNull prepend="," property="yfyftswy" >
  1928. YFYFTSWY = #yfyftswy:VARCHAR#
  1929. </isNotNull>
  1930. <isNotNull prepend="," property="whhcllxr" >
  1931. WHHCLLXR = #whhcllxr:VARCHAR#
  1932. </isNotNull>
  1933. <isNotNull prepend="," property="whhcllxdh" >
  1934. WHHCLLXDH = #whhcllxdh:VARCHAR#
  1935. </isNotNull>
  1936. <isNotNull prepend="," property="whhclrq1" >
  1937. WHHCLRQ1 = #whhclrq1:TIMESTAMP#
  1938. </isNotNull>
  1939. <isNotNull prepend="," property="whhclrq2" >
  1940. WHHCLRQ2 = #whhclrq2:TIMESTAMP#
  1941. </isNotNull>
  1942. <isNotNull prepend="," property="whhclrq3" >
  1943. WHHCLRQ3 = #whhclrq3:TIMESTAMP#
  1944. </isNotNull>
  1945. <isNotNull prepend="," property="whhclrq4" >
  1946. WHHCLRQ4 = #whhclrq4:TIMESTAMP#
  1947. </isNotNull>
  1948. <isNotNull prepend="," property="whhclrq5" >
  1949. WHHCLRQ5 = #whhclrq5:TIMESTAMP#
  1950. </isNotNull>
  1951. <isNotNull prepend="," property="whhclrq6" >
  1952. WHHCLRQ6 = #whhclrq6:TIMESTAMP#
  1953. </isNotNull>
  1954. <isNotNull prepend="," property="whhclfs1" >
  1955. WHHCLFS1 = #whhclfs1:VARCHAR#
  1956. </isNotNull>
  1957. <isNotNull prepend="," property="whhclfs2" >
  1958. WHHCLFS2 = #whhclfs2:VARCHAR#
  1959. </isNotNull>
  1960. <isNotNull prepend="," property="whhclfs3" >
  1961. WHHCLFS3 = #whhclfs3:VARCHAR#
  1962. </isNotNull>
  1963. <isNotNull prepend="," property="whhclfs4" >
  1964. WHHCLFS4 = #whhclfs4:VARCHAR#
  1965. </isNotNull>
  1966. <isNotNull prepend="," property="whhclfs5" >
  1967. WHHCLFS5 = #whhclfs5:VARCHAR#
  1968. </isNotNull>
  1969. <isNotNull prepend="," property="whhclfs6" >
  1970. WHHCLFS6 = #whhclfs6:VARCHAR#
  1971. </isNotNull>
  1972. <isNotNull prepend="," property="whhclsl1" >
  1973. WHHCLSL1 = #whhclsl1:VARCHAR#
  1974. </isNotNull>
  1975. <isNotNull prepend="," property="whhclsl2" >
  1976. WHHCLSL2 = #whhclsl2:VARCHAR#
  1977. </isNotNull>
  1978. <isNotNull prepend="," property="whhclsl3" >
  1979. WHHCLSL3 = #whhclsl3:VARCHAR#
  1980. </isNotNull>
  1981. <isNotNull prepend="," property="whhclsl4" >
  1982. WHHCLSL4 = #whhclsl4:VARCHAR#
  1983. </isNotNull>
  1984. <isNotNull prepend="," property="whhclsl5" >
  1985. WHHCLSL5 = #whhclsl5:VARCHAR#
  1986. </isNotNull>
  1987. <isNotNull prepend="," property="whhclsl6" >
  1988. WHHCLSL6 = #whhclsl6:VARCHAR#
  1989. </isNotNull>
  1990. <isNotNull prepend="," property="xssjsj1" >
  1991. XSSJSJ1 = #xssjsj1:TIMESTAMP#
  1992. </isNotNull>
  1993. <isNotNull prepend="," property="xssjsj2" >
  1994. XSSJSJ2 = #xssjsj2:TIMESTAMP#
  1995. </isNotNull>
  1996. <isNotNull prepend="," property="xssjsj3" >
  1997. XSSJSJ3 = #xssjsj3:TIMESTAMP#
  1998. </isNotNull>
  1999. <isNotNull prepend="," property="xssjsj4" >
  2000. XSSJSJ4 = #xssjsj4:TIMESTAMP#
  2001. </isNotNull>
  2002. <isNotNull prepend="," property="xssjsj5" >
  2003. XSSJSJ5 = #xssjsj5:TIMESTAMP#
  2004. </isNotNull>
  2005. <isNotNull prepend="," property="xssjsj6" >
  2006. XSSJSJ6 = #xssjsj6:TIMESTAMP#
  2007. </isNotNull>
  2008. <isNotNull prepend="," property="wscl1" >
  2009. WSCL1 = #wscl1:VARCHAR#
  2010. </isNotNull>
  2011. <isNotNull prepend="," property="wscl2" >
  2012. WSCL2 = #wscl2:VARCHAR#
  2013. </isNotNull>
  2014. <isNotNull prepend="," property="wscl3" >
  2015. WSCL3 = #wscl3:VARCHAR#
  2016. </isNotNull>
  2017. <isNotNull prepend="," property="wscl4" >
  2018. WSCL4 = #wscl4:VARCHAR#
  2019. </isNotNull>
  2020. <isNotNull prepend="," property="wscl5" >
  2021. WSCL5 = #wscl5:VARCHAR#
  2022. </isNotNull>
  2023. <isNotNull prepend="," property="wscl6" >
  2024. WSCL6 = #wscl6:VARCHAR#
  2025. </isNotNull>
  2026. <isNotNull prepend="," property="wscl7" >
  2027. WSCL7 = #wscl7:VARCHAR#
  2028. </isNotNull>
  2029. <isNotNull prepend="," property="sbtj1" >
  2030. SBTJ1 = #sbtj1:VARCHAR#
  2031. </isNotNull>
  2032. <isNotNull prepend="," property="sbtj2" >
  2033. SBTJ2 = #sbtj2:VARCHAR#
  2034. </isNotNull>
  2035. <isNotNull prepend="," property="sbtj3" >
  2036. SBTJ3 = #sbtj3:VARCHAR#
  2037. </isNotNull>
  2038. <isNotNull prepend="," property="sbtj4" >
  2039. SBTJ4 = #sbtj4:VARCHAR#
  2040. </isNotNull>
  2041. <isNotNull prepend="," property="sbtj5" >
  2042. SBTJ5 = #sbtj5:VARCHAR#
  2043. </isNotNull>
  2044. <isNotNull prepend="," property="sbtj6" >
  2045. SBTJ6 = #sbtj6:VARCHAR#
  2046. </isNotNull>
  2047. <isNotNull prepend="," property="sbtj7" >
  2048. SBTJ7 = #sbtj7:VARCHAR#
  2049. </isNotNull>
  2050. <isNotNull prepend="," property="sbtjjn" >
  2051. SBTJJN = #sbtjjn:VARCHAR#
  2052. </isNotNull>
  2053. <isNotNull prepend="," property="sbtjqn" >
  2054. SBTJQN = #sbtjqn:VARCHAR#
  2055. </isNotNull>
  2056. <isNotNull prepend="," property="dnzs" >
  2057. DNZS = #dnzs:VARCHAR#
  2058. </isNotNull>
  2059. <isNotNull prepend="," property="dnws" >
  2060. DNWS = #dnws:VARCHAR#
  2061. </isNotNull>
  2062. <isNotNull prepend="," property="gtjz" >
  2063. GTJZ = #gtjz:VARCHAR#
  2064. </isNotNull>
  2065. <isNotNull prepend="," property="wzhzs" >
  2066. WZHZS = #wzhzs:VARCHAR#
  2067. </isNotNull>
  2068. <isNotNull prepend="," property="yffbt6" >
  2069. YFFBT6 = #yffbt6:VARCHAR#
  2070. </isNotNull>
  2071. <isNotNull prepend="," property="yffbt7" >
  2072. YFFBT7 = #yffbt7:VARCHAR#
  2073. </isNotNull>
  2074. <isNotNull prepend="," property="bytts" >
  2075. BYTTS = #bytts:VARCHAR#
  2076. </isNotNull>
  2077. <isNotNull prepend="," property="yftts" >
  2078. YFTTS = #yftts:VARCHAR#
  2079. </isNotNull>
  2080. <isNotNull prepend="," property="byttszb" >
  2081. BYTTSZB = #byttszb:VARCHAR#
  2082. </isNotNull>
  2083. <isNotNull prepend="," property="qyyttszb" >
  2084. QYYTTSZB = #qyyttszb:VARCHAR#
  2085. </isNotNull>
  2086. <isNotNull prepend="," property="qeyttszb" >
  2087. QEYTTSZB = #qeyttszb:VARCHAR#
  2088. </isNotNull>
  2089. <isNotNull prepend="," property="qsyttszb" >
  2090. QSYTTSZB = #qsyttszb:VARCHAR#
  2091. </isNotNull>
  2092. <isNotNull prepend="," property="mztts" >
  2093. MZTTS = #mztts:VARCHAR#
  2094. </isNotNull>
  2095. <isNotNull prepend="," property="gztts" >
  2096. GZTTS = #gztts:VARCHAR#
  2097. </isNotNull>
  2098. <isNotNull prepend="," property="week1" >
  2099. WEEK1 = #week1:INTEGER#
  2100. </isNotNull>
  2101. <isNotNull prepend="," property="week2" >
  2102. WEEK2 = #week2:INTEGER#
  2103. </isNotNull>
  2104. <isNotNull prepend="," property="week3" >
  2105. WEEK3 = #week3:INTEGER#
  2106. </isNotNull>
  2107. <isNotNull prepend="," property="week4" >
  2108. WEEK4 = #week4:INTEGER#
  2109. </isNotNull>
  2110. <isNotNull prepend="," property="week5" >
  2111. WEEK5 = #week5:INTEGER#
  2112. </isNotNull>
  2113. <isNotNull prepend="," property="week6" >
  2114. WEEK6 = #week6:INTEGER#
  2115. </isNotNull>
  2116. <isNotNull prepend="," property="week7" >
  2117. WEEK7 = #week7:INTEGER#
  2118. </isNotNull>
  2119. <isNotNull prepend="," property="weekprice1" >
  2120. WEEKPRICE1 = #weekprice1:VARCHAR#
  2121. </isNotNull>
  2122. <isNotNull prepend="," property="weekprice2" >
  2123. WEEKPRICE2 = #weekprice2:VARCHAR#
  2124. </isNotNull>
  2125. <isNotNull prepend="," property="weekprice3" >
  2126. WEEKPRICE3 = #weekprice3:VARCHAR#
  2127. </isNotNull>
  2128. <isNotNull prepend="," property="weekprice4" >
  2129. WEEKPRICE4 = #weekprice4:VARCHAR#
  2130. </isNotNull>
  2131. <isNotNull prepend="," property="weekprice5" >
  2132. WEEKPRICE5 = #weekprice5:VARCHAR#
  2133. </isNotNull>
  2134. <isNotNull prepend="," property="weekprice6" >
  2135. WEEKPRICE6 = #weekprice6:VARCHAR#
  2136. </isNotNull>
  2137. <isNotNull prepend="," property="weekprice7" >
  2138. WEEKPRICE7 = #weekprice7:VARCHAR#
  2139. </isNotNull>
  2140. </dynamic>
  2141. where ID = #id:INTEGER#
  2142. </update>
  2143. <update id="ibatorgenerated_updateByPrimaryKey" parameterClass="com.huimv.dp.dataobject.DpSjlrsy" >
  2144. <!--
  2145. WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
  2146. This element was generated on Fri Aug 02 14:27:27 CST 2019.
  2147. -->
  2148. update dp_sjlr_sy
  2149. set MCID = #mcid:INTEGER#,
  2150. CLSJYXS = #clsjyxs:VARCHAR#,
  2151. CLSJYST = #clsjyst:VARCHAR#,
  2152. CLSJZZ = #clsjzz:VARCHAR#,
  2153. CLSJHBZZ = #clsjhbzz:VARCHAR#,
  2154. CLSJBRZ = #clsjbrz:VARCHAR#,
  2155. CLSJBYZ = #clsjbyz:VARCHAR#,
  2156. CLSJYFZ = #clsjyfz:VARCHAR#,
  2157. CLSJXSZS = #clsjxszs:VARCHAR#,
  2158. CLSJSTZS = #clsjstzs:VARCHAR#,
  2159. BYPZS = #bypzs:VARCHAR#,
  2160. BYFMS = #byfms:VARCHAR#,
  2161. BYCZS = #byczs:VARCHAR#,
  2162. BYDQXSTS = #bydqxsts:VARCHAR#,
  2163. BYDQZJ = #bydqzj:VARCHAR#,
  2164. BYZZCHL = #byzzchl:VARCHAR#,
  2165. TTSJBYTTS = #ttsjbytts:VARCHAR#,
  2166. TTSJQYYTTS = #ttsjqyytts:VARCHAR#,
  2167. TTSJQEYTTS = #ttsjqeytts:VARCHAR#,
  2168. TTSJZZ = #ttsjzz:VARCHAR#,
  2169. TTSJFZ = #ttsjfz:VARCHAR#,
  2170. TTSJQSYTTS = #ttsjqsytts:VARCHAR#,
  2171. XSSJWEEK = #xssjweek:VARCHAR#,
  2172. XSSJMONTH = #xssjmonth:VARCHAR#,
  2173. XSSJYEAR = #xssjyear:VARCHAR#,
  2174. PZJGFBPZ = #pzjgfbpz:VARCHAR#,
  2175. PZJGFBHY = #pzjgfbhy:VARCHAR#,
  2176. PZJGFBLC = #pzjgfblc:VARCHAR#,
  2177. PZJGFBFQ = #pzjgfbfq:VARCHAR#,
  2178. PZJGFBQT = #pzjgfbqt:VARCHAR#,
  2179. PZJGFBPZFML = #pzjgfbpzfml:VARCHAR#,
  2180. FMZZFBTJZS = #fmzzfbtjzs:VARCHAR#,
  2181. FMZZFBTRZS = #fmzzfbtrzs:VARCHAR#,
  2182. FMZZFBTJXS = #fmzzfbtjxs:VARCHAR#,
  2183. FMZZFBTMNYS = #fmzzfbtmnys:VARCHAR#,
  2184. FMZZFBTSTS = #fmzzfbtsts:VARCHAR#,
  2185. FMZZFBTFMCHL = #fmzzfbtfmchl:VARCHAR#,
  2186. TTFBTSW = #ttfbtsw:VARCHAR#,
  2187. TTFBTTCTG = #ttfbttctg:VARCHAR#,
  2188. TTFBTCQBFQ = #ttfbtcqbfq:VARCHAR#,
  2189. TTFBTCZSS = #ttfbtczss:VARCHAR#,
  2190. TTFBTCDYZ = #ttfbtcdyz:VARCHAR#,
  2191. TTFBTYYBL = #ttfbtyybl:VARCHAR#,
  2192. TTFBTZTJB = #ttfbtztjb:VARCHAR#,
  2193. TTFBTQT = #ttfbtqt:VARCHAR#,
  2194. YDTTS1 = #ydtts1:VARCHAR#,
  2195. YDTTS2 = #ydtts2:VARCHAR#,
  2196. YDTTS3 = #ydtts3:VARCHAR#,
  2197. YDTTS4 = #ydtts4:VARCHAR#,
  2198. YDTTS5 = #ydtts5:VARCHAR#,
  2199. YDTTS6 = #ydtts6:VARCHAR#,
  2200. YDTTS7 = #ydtts7:VARCHAR#,
  2201. YDTTS8 = #ydtts8:VARCHAR#,
  2202. YDTTS9 = #ydtts9:VARCHAR#,
  2203. YDTTS10 = #ydtts10:VARCHAR#,
  2204. YDTTS11 = #ydtts11:VARCHAR#,
  2205. YDTTS12 = #ydtts12:VARCHAR#,
  2206. YFFBT1 = #yffbt1:VARCHAR#,
  2207. YFFBT2 = #yffbt2:VARCHAR#,
  2208. YFFBT3 = #yffbt3:VARCHAR#,
  2209. YFFBT4 = #yffbt4:VARCHAR#,
  2210. YFFBT5 = #yffbt5:VARCHAR#,
  2211. YFYFTSYY = #yfyftsyy:VARCHAR#,
  2212. YFYFTSEY = #yfyftsey:VARCHAR#,
  2213. YFYFTSSY = #yfyftssy:VARCHAR#,
  2214. YFYFTSSIY = #yfyftssiy:VARCHAR#,
  2215. YFYFTSWY = #yfyftswy:VARCHAR#,
  2216. WHHCLLXR = #whhcllxr:VARCHAR#,
  2217. WHHCLLXDH = #whhcllxdh:VARCHAR#,
  2218. WHHCLRQ1 = #whhclrq1:TIMESTAMP#,
  2219. WHHCLRQ2 = #whhclrq2:TIMESTAMP#,
  2220. WHHCLRQ3 = #whhclrq3:TIMESTAMP#,
  2221. WHHCLRQ4 = #whhclrq4:TIMESTAMP#,
  2222. WHHCLRQ5 = #whhclrq5:TIMESTAMP#,
  2223. WHHCLRQ6 = #whhclrq6:TIMESTAMP#,
  2224. WHHCLFS1 = #whhclfs1:VARCHAR#,
  2225. WHHCLFS2 = #whhclfs2:VARCHAR#,
  2226. WHHCLFS3 = #whhclfs3:VARCHAR#,
  2227. WHHCLFS4 = #whhclfs4:VARCHAR#,
  2228. WHHCLFS5 = #whhclfs5:VARCHAR#,
  2229. WHHCLFS6 = #whhclfs6:VARCHAR#,
  2230. WHHCLSL1 = #whhclsl1:VARCHAR#,
  2231. WHHCLSL2 = #whhclsl2:VARCHAR#,
  2232. WHHCLSL3 = #whhclsl3:VARCHAR#,
  2233. WHHCLSL4 = #whhclsl4:VARCHAR#,
  2234. WHHCLSL5 = #whhclsl5:VARCHAR#,
  2235. WHHCLSL6 = #whhclsl6:VARCHAR#,
  2236. XSSJSJ1 = #xssjsj1:TIMESTAMP#,
  2237. XSSJSJ2 = #xssjsj2:TIMESTAMP#,
  2238. XSSJSJ3 = #xssjsj3:TIMESTAMP#,
  2239. XSSJSJ4 = #xssjsj4:TIMESTAMP#,
  2240. XSSJSJ5 = #xssjsj5:TIMESTAMP#,
  2241. XSSJSJ6 = #xssjsj6:TIMESTAMP#,
  2242. WSCL1 = #wscl1:VARCHAR#,
  2243. WSCL2 = #wscl2:VARCHAR#,
  2244. WSCL3 = #wscl3:VARCHAR#,
  2245. WSCL4 = #wscl4:VARCHAR#,
  2246. WSCL5 = #wscl5:VARCHAR#,
  2247. WSCL6 = #wscl6:VARCHAR#,
  2248. WSCL7 = #wscl7:VARCHAR#,
  2249. SBTJ1 = #sbtj1:VARCHAR#,
  2250. SBTJ2 = #sbtj2:VARCHAR#,
  2251. SBTJ3 = #sbtj3:VARCHAR#,
  2252. SBTJ4 = #sbtj4:VARCHAR#,
  2253. SBTJ5 = #sbtj5:VARCHAR#,
  2254. SBTJ6 = #sbtj6:VARCHAR#,
  2255. SBTJ7 = #sbtj7:VARCHAR#,
  2256. SBTJJN = #sbtjjn:VARCHAR#,
  2257. SBTJQN = #sbtjqn:VARCHAR#,
  2258. DNZS = #dnzs:VARCHAR#,
  2259. DNWS = #dnws:VARCHAR#,
  2260. GTJZ = #gtjz:VARCHAR#,
  2261. WZHZS = #wzhzs:VARCHAR#,
  2262. YFFBT6 = #yffbt6:VARCHAR#,
  2263. YFFBT7 = #yffbt7:VARCHAR#,
  2264. BYTTS = #bytts:VARCHAR#,
  2265. YFTTS = #yftts:VARCHAR#,
  2266. BYTTSZB = #byttszb:VARCHAR#,
  2267. QYYTTSZB = #qyyttszb:VARCHAR#,
  2268. QEYTTSZB = #qeyttszb:VARCHAR#,
  2269. QSYTTSZB = #qsyttszb:VARCHAR#,
  2270. MZTTS = #mztts:VARCHAR#,
  2271. GZTTS = #gztts:VARCHAR#,
  2272. WEEK1 = #week1:INTEGER#,
  2273. WEEK2 = #week2:INTEGER#,
  2274. WEEK3 = #week3:INTEGER#,
  2275. WEEK4 = #week4:INTEGER#,
  2276. WEEK5 = #week5:INTEGER#,
  2277. WEEK6 = #week6:INTEGER#,
  2278. WEEK7 = #week7:INTEGER#,
  2279. WEEKPRICE1 = #weekprice1:VARCHAR#,
  2280. WEEKPRICE2 = #weekprice2:VARCHAR#,
  2281. WEEKPRICE3 = #weekprice3:VARCHAR#,
  2282. WEEKPRICE4 = #weekprice4:VARCHAR#,
  2283. WEEKPRICE5 = #weekprice5:VARCHAR#,
  2284. WEEKPRICE6 = #weekprice6:VARCHAR#,
  2285. WEEKPRICE7 = #weekprice7:VARCHAR#
  2286. where ID = #id:INTEGER#
  2287. </update>
  2288. <select id="select.count.all.by.mcidlist" parameterClass="java.lang.String" resultClass="com.huimv.dp.dataobject.DpSjlrsy">
  2289. select
  2290. sum(CLSJYXS) as CLSJYXS ,sum(CLSJBRZ) as CLSJBRZ ,sum(CLSJBYZ) as CLSJBYZ ,
  2291. sum(CLSJHBZZ) as CLSJHBZZ,sum(CLSJSTZS) as CLSJSTZS,sum(CLSJXSZS) as CLSJXSZS,sum(CLSJYFZ) as CLSJYFZ,sum(CLSJYST) as CLSJYST , sum(CLSJYXS) as CLSJYXS , sum(CLSJZZ) as CLSJZZ,
  2292. sum(BYCZS) as BYCZS , sum(BYDQXSTS) as BYDQXSTS , sum(BYDQZJ) as BYDQZJ , sum(BYFMS) as BYFMS , sum(BYPZS) as BYPZS , convert(avg(BYZZCHL), decimal(10, 2)) as BYZZCHL,
  2293. sum(TTSJBYTTS) as TTSJBYTTS , sum(TTSJFZ) as TTSJFZ , sum(TTSJQEYTTS) as TTSJQEYTTS , sum(TTSJQSYTTS) as TTSJQSYTTS , sum(TTSJQYYTTS) as TTSJQYYTTS , sum(TTSJZZ) as TTSJZZ,
  2294. sum(XSSJWEEK) as XSSJWEEK , sum(XSSJMONTH) as XSSJMONTH , sum(XSSJYEAR) as XSSJYEAR, sum(PZJGFBFQ) as PZJGFBFQ , sum(PZJGFBPZ) as PZJGFBPZ , sum(PZJGFBHY) as PZJGFBHY , sum(PZJGFBLC) as PZJGFBLC , sum(PZJGFBPZFML) as PZJGFBPZFML,sum(PZJGFBQT)as PZJGFBQT ,
  2295. sum(FMZZFBTFMCHL) as FMZZFBTFMCHL , sum(FMZZFBTJXS) as FMZZFBTJXS , sum(FMZZFBTJZS) as FMZZFBTJZS , sum(FMZZFBTMNYS) as FMZZFBTMNYS , sum(FMZZFBTRZS) as FMZZFBTRZS , sum(FMZZFBTSTS)as FMZZFBTSTS,
  2296. sum(TTFBTCDYZ) as TTFBTCDYZ , sum(TTFBTCQBFQ) as TTFBTCQBFQ , sum(TTFBTCZSS) as TTFBTCZSS , sum(TTFBTQT) as TTFBTQT , sum(TTFBTSW) as TTFBTSW , sum(TTFBTTCTG) as TTFBTTCTG ,sum(TTFBTYYBL) as TTFBTYYBL , sum(TTFBTZTJB) as TTFBTZTJB,
  2297. sum(ydtts1) as ydtts1 ,sum(ydtts2) as ydtts2 ,sum(ydtts3) as ydtts3 ,sum(ydtts4) as ydtts4 ,sum(ydtts5) as ydtts5 ,sum(ydtts6) as ydtts6 ,sum(ydtts7) as ydtts7 ,sum(ydtts8) as ydtts8 ,sum(ydtts9) as ydtts9 ,
  2298. sum(ydtts10) as ydtts10 ,sum(ydtts11) as ydtts11 ,sum(ydtts12) as ydtts12 ,
  2299. sum(yffbt1) as yffbt1 ,sum(yffbt2) as yffbt2 ,sum(yffbt3) as yffbt3 ,sum(yffbt4) as yffbt4 ,sum(yffbt5) as yffbt5,
  2300. sum(YFYFTSEY) as YFYFTSEY , sum(YFYFTSSY) as YFYFTSSY , sum(YFYFTSYY) as YFYFTSYY, sum(YFFBT6) as YFFBT6, sum(YFFBT7) as YFFBT7, sum(YFYFTSSIY) as YFYFTSSIY, sum(YFYFTSWY) as YFYFTSWY,
  2301. sum(SBTJ1) as SBTJ1 , sum(SBTJ2) as SBTJ2 , sum(SBTJ3) as SBTJ3 , sum(SBTJQN) as SBTJQN, sum(SBTJJN) as SBTJJN , sum(SBTJ4) as SBTJ4 , sum(SBTJ5) as SBTJ5 , sum(SBTJ6) as SBTJ6,sum(SBTJ7) as SBTJ7,
  2302. sum(dnzs) as dnzs , sum(DNWS) as DNWS , sum(GTJZ) ,sum(WZHZS),
  2303. sum(WSCL1) as WSCL1,sum(WSCL2) as WSCL2,sum(WSCL3) as WSCL3,sum(WSCL4) as WSCL4,sum(WSCL5) as WSCL5,sum(WSCL6) as WSCL6,sum(WSCL7) as WSCL7,
  2304. convert(avg(BYTTSZB), decimal(10, 2)) as BYTTSZB, convert(avg(QYYTTSZB), decimal(10, 2)) as QYYTTSZB, convert(avg(QEYTTSZB), decimal(10, 2)) as QEYTTSZB, convert(avg(QSYTTSZB), decimal(10, 2)) as QSYTTSZB
  2305. from dp_sjlr_sy where mcid in ($list$)
  2306. </select>
  2307. </sqlMap>