123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN" "http://ibatis.apache.org/dtd/sql-map-2.dtd" >
- <sqlMap namespace="dp_sjlr_sy" >
- <resultMap id="ibatorgenerated_BaseResultMap" class="com.huimv.dp.dataobject.DpSjlrsy" >
- <!--
- WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
- This element was generated on Fri Aug 02 14:27:27 CST 2019.
- -->
- <result column="ID" property="id" jdbcType="INTEGER" />
- <result column="MCID" property="mcid" jdbcType="INTEGER" />
- <result column="CLSJYXS" property="clsjyxs" jdbcType="VARCHAR" />
- <result column="CLSJYST" property="clsjyst" jdbcType="VARCHAR" />
- <result column="CLSJZZ" property="clsjzz" jdbcType="VARCHAR" />
- <result column="CLSJHBZZ" property="clsjhbzz" jdbcType="VARCHAR" />
- <result column="CLSJBRZ" property="clsjbrz" jdbcType="VARCHAR" />
- <result column="CLSJBYZ" property="clsjbyz" jdbcType="VARCHAR" />
- <result column="CLSJYFZ" property="clsjyfz" jdbcType="VARCHAR" />
- <result column="CLSJXSZS" property="clsjxszs" jdbcType="VARCHAR" />
- <result column="CLSJSTZS" property="clsjstzs" jdbcType="VARCHAR" />
- <result column="BYPZS" property="bypzs" jdbcType="VARCHAR" />
- <result column="BYFMS" property="byfms" jdbcType="VARCHAR" />
- <result column="BYCZS" property="byczs" jdbcType="VARCHAR" />
- <result column="BYDQXSTS" property="bydqxsts" jdbcType="VARCHAR" />
- <result column="BYDQZJ" property="bydqzj" jdbcType="VARCHAR" />
- <result column="BYZZCHL" property="byzzchl" jdbcType="VARCHAR" />
- <result column="TTSJBYTTS" property="ttsjbytts" jdbcType="VARCHAR" />
- <result column="TTSJQYYTTS" property="ttsjqyytts" jdbcType="VARCHAR" />
- <result column="TTSJQEYTTS" property="ttsjqeytts" jdbcType="VARCHAR" />
- <result column="TTSJZZ" property="ttsjzz" jdbcType="VARCHAR" />
- <result column="TTSJFZ" property="ttsjfz" jdbcType="VARCHAR" />
- <result column="TTSJQSYTTS" property="ttsjqsytts" jdbcType="VARCHAR" />
- <result column="XSSJWEEK" property="xssjweek" jdbcType="VARCHAR" />
- <result column="XSSJMONTH" property="xssjmonth" jdbcType="VARCHAR" />
- <result column="XSSJYEAR" property="xssjyear" jdbcType="VARCHAR" />
- <result column="PZJGFBPZ" property="pzjgfbpz" jdbcType="VARCHAR" />
- <result column="PZJGFBHY" property="pzjgfbhy" jdbcType="VARCHAR" />
- <result column="PZJGFBLC" property="pzjgfblc" jdbcType="VARCHAR" />
- <result column="PZJGFBFQ" property="pzjgfbfq" jdbcType="VARCHAR" />
- <result column="PZJGFBQT" property="pzjgfbqt" jdbcType="VARCHAR" />
- <result column="PZJGFBPZFML" property="pzjgfbpzfml" jdbcType="VARCHAR" />
- <result column="FMZZFBTJZS" property="fmzzfbtjzs" jdbcType="VARCHAR" />
- <result column="FMZZFBTRZS" property="fmzzfbtrzs" jdbcType="VARCHAR" />
- <result column="FMZZFBTJXS" property="fmzzfbtjxs" jdbcType="VARCHAR" />
- <result column="FMZZFBTMNYS" property="fmzzfbtmnys" jdbcType="VARCHAR" />
- <result column="FMZZFBTSTS" property="fmzzfbtsts" jdbcType="VARCHAR" />
- <result column="FMZZFBTFMCHL" property="fmzzfbtfmchl" jdbcType="VARCHAR" />
- <result column="TTFBTSW" property="ttfbtsw" jdbcType="VARCHAR" />
- <result column="TTFBTTCTG" property="ttfbttctg" jdbcType="VARCHAR" />
- <result column="TTFBTCQBFQ" property="ttfbtcqbfq" jdbcType="VARCHAR" />
- <result column="TTFBTCZSS" property="ttfbtczss" jdbcType="VARCHAR" />
- <result column="TTFBTCDYZ" property="ttfbtcdyz" jdbcType="VARCHAR" />
- <result column="TTFBTYYBL" property="ttfbtyybl" jdbcType="VARCHAR" />
- <result column="TTFBTZTJB" property="ttfbtztjb" jdbcType="VARCHAR" />
- <result column="TTFBTQT" property="ttfbtqt" jdbcType="VARCHAR" />
- <result column="YDTTS1" property="ydtts1" jdbcType="VARCHAR" />
- <result column="YDTTS2" property="ydtts2" jdbcType="VARCHAR" />
- <result column="YDTTS3" property="ydtts3" jdbcType="VARCHAR" />
- <result column="YDTTS4" property="ydtts4" jdbcType="VARCHAR" />
- <result column="YDTTS5" property="ydtts5" jdbcType="VARCHAR" />
- <result column="YDTTS6" property="ydtts6" jdbcType="VARCHAR" />
- <result column="YDTTS7" property="ydtts7" jdbcType="VARCHAR" />
- <result column="YDTTS8" property="ydtts8" jdbcType="VARCHAR" />
- <result column="YDTTS9" property="ydtts9" jdbcType="VARCHAR" />
- <result column="YDTTS10" property="ydtts10" jdbcType="VARCHAR" />
- <result column="YDTTS11" property="ydtts11" jdbcType="VARCHAR" />
- <result column="YDTTS12" property="ydtts12" jdbcType="VARCHAR" />
- <result column="YFFBT1" property="yffbt1" jdbcType="VARCHAR" />
- <result column="YFFBT2" property="yffbt2" jdbcType="VARCHAR" />
- <result column="YFFBT3" property="yffbt3" jdbcType="VARCHAR" />
- <result column="YFFBT4" property="yffbt4" jdbcType="VARCHAR" />
- <result column="YFFBT5" property="yffbt5" jdbcType="VARCHAR" />
- <result column="YFYFTSYY" property="yfyftsyy" jdbcType="VARCHAR" />
- <result column="YFYFTSEY" property="yfyftsey" jdbcType="VARCHAR" />
- <result column="YFYFTSSY" property="yfyftssy" jdbcType="VARCHAR" />
- <result column="YFYFTSSIY" property="yfyftssiy" jdbcType="VARCHAR" />
- <result column="YFYFTSWY" property="yfyftswy" jdbcType="VARCHAR" />
- <result column="WHHCLLXR" property="whhcllxr" jdbcType="VARCHAR" />
- <result column="WHHCLLXDH" property="whhcllxdh" jdbcType="VARCHAR" />
- <result column="WHHCLRQ1" property="whhclrq1" jdbcType="TIMESTAMP" />
- <result column="WHHCLRQ2" property="whhclrq2" jdbcType="TIMESTAMP" />
- <result column="WHHCLRQ3" property="whhclrq3" jdbcType="TIMESTAMP" />
- <result column="WHHCLRQ4" property="whhclrq4" jdbcType="TIMESTAMP" />
- <result column="WHHCLRQ5" property="whhclrq5" jdbcType="TIMESTAMP" />
- <result column="WHHCLRQ6" property="whhclrq6" jdbcType="TIMESTAMP" />
- <result column="WHHCLFS1" property="whhclfs1" jdbcType="VARCHAR" />
- <result column="WHHCLFS2" property="whhclfs2" jdbcType="VARCHAR" />
- <result column="WHHCLFS3" property="whhclfs3" jdbcType="VARCHAR" />
- <result column="WHHCLFS4" property="whhclfs4" jdbcType="VARCHAR" />
- <result column="WHHCLFS5" property="whhclfs5" jdbcType="VARCHAR" />
- <result column="WHHCLFS6" property="whhclfs6" jdbcType="VARCHAR" />
- <result column="WHHCLSL1" property="whhclsl1" jdbcType="VARCHAR" />
- <result column="WHHCLSL2" property="whhclsl2" jdbcType="VARCHAR" />
- <result column="WHHCLSL3" property="whhclsl3" jdbcType="VARCHAR" />
- <result column="WHHCLSL4" property="whhclsl4" jdbcType="VARCHAR" />
- <result column="WHHCLSL5" property="whhclsl5" jdbcType="VARCHAR" />
- <result column="WHHCLSL6" property="whhclsl6" jdbcType="VARCHAR" />
- <result column="XSSJSJ1" property="xssjsj1" jdbcType="TIMESTAMP" />
- <result column="XSSJSJ2" property="xssjsj2" jdbcType="TIMESTAMP" />
- <result column="XSSJSJ3" property="xssjsj3" jdbcType="TIMESTAMP" />
- <result column="XSSJSJ4" property="xssjsj4" jdbcType="TIMESTAMP" />
- <result column="XSSJSJ5" property="xssjsj5" jdbcType="TIMESTAMP" />
- <result column="XSSJSJ6" property="xssjsj6" jdbcType="TIMESTAMP" />
- <result column="WSCL1" property="wscl1" jdbcType="VARCHAR" />
- <result column="WSCL2" property="wscl2" jdbcType="VARCHAR" />
- <result column="WSCL3" property="wscl3" jdbcType="VARCHAR" />
- <result column="WSCL4" property="wscl4" jdbcType="VARCHAR" />
- <result column="WSCL5" property="wscl5" jdbcType="VARCHAR" />
- <result column="WSCL6" property="wscl6" jdbcType="VARCHAR" />
- <result column="WSCL7" property="wscl7" jdbcType="VARCHAR" />
- <result column="SBTJ1" property="sbtj1" jdbcType="VARCHAR" />
- <result column="SBTJ2" property="sbtj2" jdbcType="VARCHAR" />
- <result column="SBTJ3" property="sbtj3" jdbcType="VARCHAR" />
- <result column="SBTJ4" property="sbtj4" jdbcType="VARCHAR" />
- <result column="SBTJ5" property="sbtj5" jdbcType="VARCHAR" />
- <result column="SBTJ6" property="sbtj6" jdbcType="VARCHAR" />
- <result column="SBTJ7" property="sbtj7" jdbcType="VARCHAR" />
- <result column="SBTJJN" property="sbtjjn" jdbcType="VARCHAR" />
- <result column="SBTJQN" property="sbtjqn" jdbcType="VARCHAR" />
- <result column="DNZS" property="dnzs" jdbcType="VARCHAR" />
- <result column="DNWS" property="dnws" jdbcType="VARCHAR" />
- <result column="GTJZ" property="gtjz" jdbcType="VARCHAR" />
- <result column="WZHZS" property="wzhzs" jdbcType="VARCHAR" />
- <result column="YFFBT6" property="yffbt6" jdbcType="VARCHAR" />
- <result column="YFFBT7" property="yffbt7" jdbcType="VARCHAR" />
- <result column="BYTTS" property="bytts" jdbcType="VARCHAR" />
- <result column="YFTTS" property="yftts" jdbcType="VARCHAR" />
- <result column="BYTTSZB" property="byttszb" jdbcType="VARCHAR" />
- <result column="QYYTTSZB" property="qyyttszb" jdbcType="VARCHAR" />
- <result column="QEYTTSZB" property="qeyttszb" jdbcType="VARCHAR" />
- <result column="QSYTTSZB" property="qsyttszb" jdbcType="VARCHAR" />
- <result column="MZTTS" property="mztts" jdbcType="VARCHAR" />
- <result column="GZTTS" property="gztts" jdbcType="VARCHAR" />
- <result column="WEEK1" property="week1" jdbcType="INTEGER" />
- <result column="WEEK2" property="week2" jdbcType="INTEGER" />
- <result column="WEEK3" property="week3" jdbcType="INTEGER" />
- <result column="WEEK4" property="week4" jdbcType="INTEGER" />
- <result column="WEEK5" property="week5" jdbcType="INTEGER" />
- <result column="WEEK6" property="week6" jdbcType="INTEGER" />
- <result column="WEEK7" property="week7" jdbcType="INTEGER" />
- <result column="WEEKPRICE1" property="weekprice1" jdbcType="VARCHAR" />
- <result column="WEEKPRICE2" property="weekprice2" jdbcType="VARCHAR" />
- <result column="WEEKPRICE3" property="weekprice3" jdbcType="VARCHAR" />
- <result column="WEEKPRICE4" property="weekprice4" jdbcType="VARCHAR" />
- <result column="WEEKPRICE5" property="weekprice5" jdbcType="VARCHAR" />
- <result column="WEEKPRICE6" property="weekprice6" jdbcType="VARCHAR" />
- <result column="WEEKPRICE7" property="weekprice7" jdbcType="VARCHAR" />
- </resultMap>
- <sql id="ibatorgenerated_Example_Where_Clause" >
- <!--
- WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
- This element was generated on Fri Aug 02 14:27:27 CST 2019.
- -->
- <iterate property="oredCriteria" conjunction="or" prepend="where" removeFirstPrepend="iterate" >
- <isEqual property="oredCriteria[].valid" compareValue="true" >
- (
- <iterate prepend="and" property="oredCriteria[].criteriaWithoutValue" conjunction="and" >
- $oredCriteria[].criteriaWithoutValue[]$
- </iterate>
- <iterate prepend="and" property="oredCriteria[].criteriaWithSingleValue" conjunction="and" >
- $oredCriteria[].criteriaWithSingleValue[].condition$
- #oredCriteria[].criteriaWithSingleValue[].value#
- </iterate>
- <iterate prepend="and" property="oredCriteria[].criteriaWithListValue" conjunction="and" >
- $oredCriteria[].criteriaWithListValue[].condition$
- <iterate property="oredCriteria[].criteriaWithListValue[].values" open="(" close=")" conjunction="," >
- #oredCriteria[].criteriaWithListValue[].values[]#
- </iterate>
- </iterate>
- <iterate prepend="and" property="oredCriteria[].criteriaWithBetweenValue" conjunction="and" >
- $oredCriteria[].criteriaWithBetweenValue[].condition$
- #oredCriteria[].criteriaWithBetweenValue[].values[0]# and
- #oredCriteria[].criteriaWithBetweenValue[].values[1]#
- </iterate>
- )
- </isEqual>
- </iterate>
- </sql>
- <select id="ibatorgenerated_selectByExample" resultMap="ibatorgenerated_BaseResultMap" parameterClass="com.huimv.dp.dataobject.DpSjlrsyExample" >
- <!--
- WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
- This element was generated on Fri Aug 02 14:27:27 CST 2019.
- -->
- select ID, MCID, CLSJYXS, CLSJYST, CLSJZZ, CLSJHBZZ, CLSJBRZ, CLSJBYZ, CLSJYFZ, CLSJXSZS,
- CLSJSTZS, BYPZS, BYFMS, BYCZS, BYDQXSTS, BYDQZJ, BYZZCHL, TTSJBYTTS, TTSJQYYTTS, TTSJQEYTTS,
- TTSJZZ, TTSJFZ, TTSJQSYTTS, XSSJWEEK, XSSJMONTH, XSSJYEAR, PZJGFBPZ, PZJGFBHY, PZJGFBLC,
- PZJGFBFQ, PZJGFBQT, PZJGFBPZFML, FMZZFBTJZS, FMZZFBTRZS, FMZZFBTJXS, FMZZFBTMNYS, FMZZFBTSTS,
- FMZZFBTFMCHL, TTFBTSW, TTFBTTCTG, TTFBTCQBFQ, TTFBTCZSS, TTFBTCDYZ, TTFBTYYBL, TTFBTZTJB,
- TTFBTQT, YDTTS1, YDTTS2, YDTTS3, YDTTS4, YDTTS5, YDTTS6, YDTTS7, YDTTS8, YDTTS9, YDTTS10,
- YDTTS11, YDTTS12, YFFBT1, YFFBT2, YFFBT3, YFFBT4, YFFBT5, YFYFTSYY, YFYFTSEY, YFYFTSSY,
- YFYFTSSIY, YFYFTSWY, WHHCLLXR, WHHCLLXDH, WHHCLRQ1, WHHCLRQ2, WHHCLRQ3, WHHCLRQ4, WHHCLRQ5,
- WHHCLRQ6, WHHCLFS1, WHHCLFS2, WHHCLFS3, WHHCLFS4, WHHCLFS5, WHHCLFS6, WHHCLSL1, WHHCLSL2,
- WHHCLSL3, WHHCLSL4, WHHCLSL5, WHHCLSL6, XSSJSJ1, XSSJSJ2, XSSJSJ3, XSSJSJ4, XSSJSJ5, XSSJSJ6,
- WSCL1, WSCL2, WSCL3, WSCL4, WSCL5, WSCL6, WSCL7, SBTJ1, SBTJ2, SBTJ3, SBTJ4, SBTJ5, SBTJ6,
- SBTJ7, SBTJJN, SBTJQN, DNZS, DNWS, GTJZ, WZHZS, YFFBT6, YFFBT7, BYTTS, YFTTS, BYTTSZB,
- QYYTTSZB, QEYTTSZB, QSYTTSZB, MZTTS, GZTTS, WEEK1, WEEK2, WEEK3, WEEK4, WEEK5, WEEK6, WEEK7,
- WEEKPRICE1, WEEKPRICE2, WEEKPRICE3, WEEKPRICE4, WEEKPRICE5, WEEKPRICE6, WEEKPRICE7
- from dp_sjlr_sy
- <isParameterPresent >
- <include refid="dp_sjlr_sy.ibatorgenerated_Example_Where_Clause" />
- <isNotNull property="orderByClause" >
- order by $orderByClause$
- </isNotNull>
- <isGreaterEqual property="start" compareValue="0" >
- limit $start$ , $limit$
- </isGreaterEqual>
- </isParameterPresent>
- </select>
- <select id="ibatorgenerated_selectByPrimaryKey" resultMap="ibatorgenerated_BaseResultMap" parameterClass="com.huimv.dp.dataobject.DpSjlrsy" >
- <!--
- WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
- This element was generated on Fri Aug 02 14:27:27 CST 2019.
- -->
- select ID, MCID, CLSJYXS, CLSJYST, CLSJZZ, CLSJHBZZ, CLSJBRZ, CLSJBYZ, CLSJYFZ, CLSJXSZS,
- CLSJSTZS, BYPZS, BYFMS, BYCZS, BYDQXSTS, BYDQZJ, BYZZCHL, TTSJBYTTS, TTSJQYYTTS, TTSJQEYTTS,
- TTSJZZ, TTSJFZ, TTSJQSYTTS, XSSJWEEK, XSSJMONTH, XSSJYEAR, PZJGFBPZ, PZJGFBHY, PZJGFBLC,
- PZJGFBFQ, PZJGFBQT, PZJGFBPZFML, FMZZFBTJZS, FMZZFBTRZS, FMZZFBTJXS, FMZZFBTMNYS, FMZZFBTSTS,
- FMZZFBTFMCHL, TTFBTSW, TTFBTTCTG, TTFBTCQBFQ, TTFBTCZSS, TTFBTCDYZ, TTFBTYYBL, TTFBTZTJB,
- TTFBTQT, YDTTS1, YDTTS2, YDTTS3, YDTTS4, YDTTS5, YDTTS6, YDTTS7, YDTTS8, YDTTS9, YDTTS10,
- YDTTS11, YDTTS12, YFFBT1, YFFBT2, YFFBT3, YFFBT4, YFFBT5, YFYFTSYY, YFYFTSEY, YFYFTSSY,
- YFYFTSSIY, YFYFTSWY, WHHCLLXR, WHHCLLXDH, WHHCLRQ1, WHHCLRQ2, WHHCLRQ3, WHHCLRQ4, WHHCLRQ5,
- WHHCLRQ6, WHHCLFS1, WHHCLFS2, WHHCLFS3, WHHCLFS4, WHHCLFS5, WHHCLFS6, WHHCLSL1, WHHCLSL2,
- WHHCLSL3, WHHCLSL4, WHHCLSL5, WHHCLSL6, XSSJSJ1, XSSJSJ2, XSSJSJ3, XSSJSJ4, XSSJSJ5, XSSJSJ6,
- WSCL1, WSCL2, WSCL3, WSCL4, WSCL5, WSCL6, WSCL7, SBTJ1, SBTJ2, SBTJ3, SBTJ4, SBTJ5, SBTJ6,
- SBTJ7, SBTJJN, SBTJQN, DNZS, DNWS, GTJZ, WZHZS, YFFBT6, YFFBT7, BYTTS, YFTTS, BYTTSZB,
- QYYTTSZB, QEYTTSZB, QSYTTSZB, MZTTS, GZTTS, WEEK1, WEEK2, WEEK3, WEEK4, WEEK5, WEEK6, WEEK7,
- WEEKPRICE1, WEEKPRICE2, WEEKPRICE3, WEEKPRICE4, WEEKPRICE5, WEEKPRICE6, WEEKPRICE7
- from dp_sjlr_sy
- where ID = #id:INTEGER#
- </select>
- <delete id="ibatorgenerated_deleteByPrimaryKey" parameterClass="com.huimv.dp.dataobject.DpSjlrsy" >
- <!--
- WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
- This element was generated on Fri Aug 02 14:27:27 CST 2019.
- -->
- delete from dp_sjlr_sy
- where ID = #id:INTEGER#
- </delete>
- <delete id="ibatorgenerated_deleteByExample" parameterClass="com.huimv.dp.dataobject.DpSjlrsyExample" >
- <!--
- WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
- This element was generated on Fri Aug 02 14:27:27 CST 2019.
- -->
- delete from dp_sjlr_sy
- <include refid="dp_sjlr_sy.ibatorgenerated_Example_Where_Clause" />
- </delete>
- <insert id="ibatorgenerated_insert" parameterClass="com.huimv.dp.dataobject.DpSjlrsy" >
- <!--
- WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
- This element was generated on Fri Aug 02 14:27:27 CST 2019.
- -->
- insert into dp_sjlr_sy (ID, MCID, CLSJYXS, CLSJYST, CLSJZZ, CLSJHBZZ, CLSJBRZ, CLSJBYZ, CLSJYFZ,
- CLSJXSZS, CLSJSTZS, BYPZS, BYFMS, BYCZS, BYDQXSTS, BYDQZJ, BYZZCHL, TTSJBYTTS, TTSJQYYTTS,
- TTSJQEYTTS, TTSJZZ, TTSJFZ, TTSJQSYTTS, XSSJWEEK, XSSJMONTH, XSSJYEAR, PZJGFBPZ, PZJGFBHY,
- PZJGFBLC, PZJGFBFQ, PZJGFBQT, PZJGFBPZFML, FMZZFBTJZS, FMZZFBTRZS, FMZZFBTJXS, FMZZFBTMNYS,
- FMZZFBTSTS, FMZZFBTFMCHL, TTFBTSW, TTFBTTCTG, TTFBTCQBFQ, TTFBTCZSS, TTFBTCDYZ, TTFBTYYBL,
- TTFBTZTJB, TTFBTQT, YDTTS1, YDTTS2, YDTTS3, YDTTS4, YDTTS5, YDTTS6, YDTTS7, YDTTS8, YDTTS9,
- YDTTS10, YDTTS11, YDTTS12, YFFBT1, YFFBT2, YFFBT3, YFFBT4, YFFBT5, YFYFTSYY, YFYFTSEY,
- YFYFTSSY, YFYFTSSIY, YFYFTSWY, WHHCLLXR, WHHCLLXDH, WHHCLRQ1, WHHCLRQ2, WHHCLRQ3, WHHCLRQ4,
- WHHCLRQ5, WHHCLRQ6, WHHCLFS1, WHHCLFS2, WHHCLFS3, WHHCLFS4, WHHCLFS5, WHHCLFS6, WHHCLSL1,
- WHHCLSL2, WHHCLSL3, WHHCLSL4, WHHCLSL5, WHHCLSL6, XSSJSJ1, XSSJSJ2, XSSJSJ3, XSSJSJ4, XSSJSJ5,
- XSSJSJ6, WSCL1, WSCL2, WSCL3, WSCL4, WSCL5, WSCL6, WSCL7, SBTJ1, SBTJ2, SBTJ3, SBTJ4, SBTJ5,
- SBTJ6, SBTJ7, SBTJJN, SBTJQN, DNZS, DNWS, GTJZ, WZHZS, YFFBT6, YFFBT7, BYTTS, YFTTS, BYTTSZB,
- QYYTTSZB, QEYTTSZB, QSYTTSZB, MZTTS, GZTTS, WEEK1, WEEK2, WEEK3, WEEK4, WEEK5, WEEK6, WEEK7,
- WEEKPRICE1, WEEKPRICE2, WEEKPRICE3, WEEKPRICE4, WEEKPRICE5, WEEKPRICE6, WEEKPRICE7)
- values (#id:INTEGER#, #mcid:INTEGER#, #clsjyxs:VARCHAR#, #clsjyst:VARCHAR#, #clsjzz:VARCHAR#,
- #clsjhbzz:VARCHAR#, #clsjbrz:VARCHAR#, #clsjbyz:VARCHAR#, #clsjyfz:VARCHAR#,
- #clsjxszs:VARCHAR#, #clsjstzs:VARCHAR#, #bypzs:VARCHAR#, #byfms:VARCHAR#, #byczs:VARCHAR#,
- #bydqxsts:VARCHAR#, #bydqzj:VARCHAR#, #byzzchl:VARCHAR#, #ttsjbytts:VARCHAR#,
- #ttsjqyytts:VARCHAR#, #ttsjqeytts:VARCHAR#, #ttsjzz:VARCHAR#, #ttsjfz:VARCHAR#,
- #ttsjqsytts:VARCHAR#, #xssjweek:VARCHAR#, #xssjmonth:VARCHAR#, #xssjyear:VARCHAR#,
- #pzjgfbpz:VARCHAR#, #pzjgfbhy:VARCHAR#, #pzjgfblc:VARCHAR#, #pzjgfbfq:VARCHAR#,
- #pzjgfbqt:VARCHAR#, #pzjgfbpzfml:VARCHAR#, #fmzzfbtjzs:VARCHAR#, #fmzzfbtrzs:VARCHAR#,
- #fmzzfbtjxs:VARCHAR#, #fmzzfbtmnys:VARCHAR#, #fmzzfbtsts:VARCHAR#, #fmzzfbtfmchl:VARCHAR#,
- #ttfbtsw:VARCHAR#, #ttfbttctg:VARCHAR#, #ttfbtcqbfq:VARCHAR#, #ttfbtczss:VARCHAR#,
- #ttfbtcdyz:VARCHAR#, #ttfbtyybl:VARCHAR#, #ttfbtztjb:VARCHAR#, #ttfbtqt:VARCHAR#,
- #ydtts1:VARCHAR#, #ydtts2:VARCHAR#, #ydtts3:VARCHAR#, #ydtts4:VARCHAR#, #ydtts5:VARCHAR#,
- #ydtts6:VARCHAR#, #ydtts7:VARCHAR#, #ydtts8:VARCHAR#, #ydtts9:VARCHAR#, #ydtts10:VARCHAR#,
- #ydtts11:VARCHAR#, #ydtts12:VARCHAR#, #yffbt1:VARCHAR#, #yffbt2:VARCHAR#, #yffbt3:VARCHAR#,
- #yffbt4:VARCHAR#, #yffbt5:VARCHAR#, #yfyftsyy:VARCHAR#, #yfyftsey:VARCHAR#,
- #yfyftssy:VARCHAR#, #yfyftssiy:VARCHAR#, #yfyftswy:VARCHAR#, #whhcllxr:VARCHAR#,
- #whhcllxdh:VARCHAR#, #whhclrq1:TIMESTAMP#, #whhclrq2:TIMESTAMP#, #whhclrq3:TIMESTAMP#,
- #whhclrq4:TIMESTAMP#, #whhclrq5:TIMESTAMP#, #whhclrq6:TIMESTAMP#, #whhclfs1:VARCHAR#,
- #whhclfs2:VARCHAR#, #whhclfs3:VARCHAR#, #whhclfs4:VARCHAR#, #whhclfs5:VARCHAR#,
- #whhclfs6:VARCHAR#, #whhclsl1:VARCHAR#, #whhclsl2:VARCHAR#, #whhclsl3:VARCHAR#,
- #whhclsl4:VARCHAR#, #whhclsl5:VARCHAR#, #whhclsl6:VARCHAR#, #xssjsj1:TIMESTAMP#,
- #xssjsj2:TIMESTAMP#, #xssjsj3:TIMESTAMP#, #xssjsj4:TIMESTAMP#, #xssjsj5:TIMESTAMP#,
- #xssjsj6:TIMESTAMP#, #wscl1:VARCHAR#, #wscl2:VARCHAR#, #wscl3:VARCHAR#, #wscl4:VARCHAR#,
- #wscl5:VARCHAR#, #wscl6:VARCHAR#, #wscl7:VARCHAR#, #sbtj1:VARCHAR#, #sbtj2:VARCHAR#,
- #sbtj3:VARCHAR#, #sbtj4:VARCHAR#, #sbtj5:VARCHAR#, #sbtj6:VARCHAR#, #sbtj7:VARCHAR#,
- #sbtjjn:VARCHAR#, #sbtjqn:VARCHAR#, #dnzs:VARCHAR#, #dnws:VARCHAR#, #gtjz:VARCHAR#,
- #wzhzs:VARCHAR#, #yffbt6:VARCHAR#, #yffbt7:VARCHAR#, #bytts:VARCHAR#, #yftts:VARCHAR#,
- #byttszb:VARCHAR#, #qyyttszb:VARCHAR#, #qeyttszb:VARCHAR#, #qsyttszb:VARCHAR#,
- #mztts:VARCHAR#, #gztts:VARCHAR#, #week1:INTEGER#, #week2:INTEGER#, #week3:INTEGER#,
- #week4:INTEGER#, #week5:INTEGER#, #week6:INTEGER#, #week7:INTEGER#, #weekprice1:VARCHAR#,
- #weekprice2:VARCHAR#, #weekprice3:VARCHAR#, #weekprice4:VARCHAR#, #weekprice5:VARCHAR#,
- #weekprice6:VARCHAR#, #weekprice7:VARCHAR#)
- </insert>
- <insert id="ibatorgenerated_insertSelective" parameterClass="com.huimv.dp.dataobject.DpSjlrsy" >
- <!--
- WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
- This element was generated on Fri Aug 02 14:27:27 CST 2019.
- -->
- insert into dp_sjlr_sy
- <dynamic prepend="(" >
- <isNotNull prepend="," property="id" >
- ID
- </isNotNull>
- <isNotNull prepend="," property="mcid" >
- MCID
- </isNotNull>
- <isNotNull prepend="," property="clsjyxs" >
- CLSJYXS
- </isNotNull>
- <isNotNull prepend="," property="clsjyst" >
- CLSJYST
- </isNotNull>
- <isNotNull prepend="," property="clsjzz" >
- CLSJZZ
- </isNotNull>
- <isNotNull prepend="," property="clsjhbzz" >
- CLSJHBZZ
- </isNotNull>
- <isNotNull prepend="," property="clsjbrz" >
- CLSJBRZ
- </isNotNull>
- <isNotNull prepend="," property="clsjbyz" >
- CLSJBYZ
- </isNotNull>
- <isNotNull prepend="," property="clsjyfz" >
- CLSJYFZ
- </isNotNull>
- <isNotNull prepend="," property="clsjxszs" >
- CLSJXSZS
- </isNotNull>
- <isNotNull prepend="," property="clsjstzs" >
- CLSJSTZS
- </isNotNull>
- <isNotNull prepend="," property="bypzs" >
- BYPZS
- </isNotNull>
- <isNotNull prepend="," property="byfms" >
- BYFMS
- </isNotNull>
- <isNotNull prepend="," property="byczs" >
- BYCZS
- </isNotNull>
- <isNotNull prepend="," property="bydqxsts" >
- BYDQXSTS
- </isNotNull>
- <isNotNull prepend="," property="bydqzj" >
- BYDQZJ
- </isNotNull>
- <isNotNull prepend="," property="byzzchl" >
- BYZZCHL
- </isNotNull>
- <isNotNull prepend="," property="ttsjbytts" >
- TTSJBYTTS
- </isNotNull>
- <isNotNull prepend="," property="ttsjqyytts" >
- TTSJQYYTTS
- </isNotNull>
- <isNotNull prepend="," property="ttsjqeytts" >
- TTSJQEYTTS
- </isNotNull>
- <isNotNull prepend="," property="ttsjzz" >
- TTSJZZ
- </isNotNull>
- <isNotNull prepend="," property="ttsjfz" >
- TTSJFZ
- </isNotNull>
- <isNotNull prepend="," property="ttsjqsytts" >
- TTSJQSYTTS
- </isNotNull>
- <isNotNull prepend="," property="xssjweek" >
- XSSJWEEK
- </isNotNull>
- <isNotNull prepend="," property="xssjmonth" >
- XSSJMONTH
- </isNotNull>
- <isNotNull prepend="," property="xssjyear" >
- XSSJYEAR
- </isNotNull>
- <isNotNull prepend="," property="pzjgfbpz" >
- PZJGFBPZ
- </isNotNull>
- <isNotNull prepend="," property="pzjgfbhy" >
- PZJGFBHY
- </isNotNull>
- <isNotNull prepend="," property="pzjgfblc" >
- PZJGFBLC
- </isNotNull>
- <isNotNull prepend="," property="pzjgfbfq" >
- PZJGFBFQ
- </isNotNull>
- <isNotNull prepend="," property="pzjgfbqt" >
- PZJGFBQT
- </isNotNull>
- <isNotNull prepend="," property="pzjgfbpzfml" >
- PZJGFBPZFML
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtjzs" >
- FMZZFBTJZS
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtrzs" >
- FMZZFBTRZS
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtjxs" >
- FMZZFBTJXS
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtmnys" >
- FMZZFBTMNYS
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtsts" >
- FMZZFBTSTS
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtfmchl" >
- FMZZFBTFMCHL
- </isNotNull>
- <isNotNull prepend="," property="ttfbtsw" >
- TTFBTSW
- </isNotNull>
- <isNotNull prepend="," property="ttfbttctg" >
- TTFBTTCTG
- </isNotNull>
- <isNotNull prepend="," property="ttfbtcqbfq" >
- TTFBTCQBFQ
- </isNotNull>
- <isNotNull prepend="," property="ttfbtczss" >
- TTFBTCZSS
- </isNotNull>
- <isNotNull prepend="," property="ttfbtcdyz" >
- TTFBTCDYZ
- </isNotNull>
- <isNotNull prepend="," property="ttfbtyybl" >
- TTFBTYYBL
- </isNotNull>
- <isNotNull prepend="," property="ttfbtztjb" >
- TTFBTZTJB
- </isNotNull>
- <isNotNull prepend="," property="ttfbtqt" >
- TTFBTQT
- </isNotNull>
- <isNotNull prepend="," property="ydtts1" >
- YDTTS1
- </isNotNull>
- <isNotNull prepend="," property="ydtts2" >
- YDTTS2
- </isNotNull>
- <isNotNull prepend="," property="ydtts3" >
- YDTTS3
- </isNotNull>
- <isNotNull prepend="," property="ydtts4" >
- YDTTS4
- </isNotNull>
- <isNotNull prepend="," property="ydtts5" >
- YDTTS5
- </isNotNull>
- <isNotNull prepend="," property="ydtts6" >
- YDTTS6
- </isNotNull>
- <isNotNull prepend="," property="ydtts7" >
- YDTTS7
- </isNotNull>
- <isNotNull prepend="," property="ydtts8" >
- YDTTS8
- </isNotNull>
- <isNotNull prepend="," property="ydtts9" >
- YDTTS9
- </isNotNull>
- <isNotNull prepend="," property="ydtts10" >
- YDTTS10
- </isNotNull>
- <isNotNull prepend="," property="ydtts11" >
- YDTTS11
- </isNotNull>
- <isNotNull prepend="," property="ydtts12" >
- YDTTS12
- </isNotNull>
- <isNotNull prepend="," property="yffbt1" >
- YFFBT1
- </isNotNull>
- <isNotNull prepend="," property="yffbt2" >
- YFFBT2
- </isNotNull>
- <isNotNull prepend="," property="yffbt3" >
- YFFBT3
- </isNotNull>
- <isNotNull prepend="," property="yffbt4" >
- YFFBT4
- </isNotNull>
- <isNotNull prepend="," property="yffbt5" >
- YFFBT5
- </isNotNull>
- <isNotNull prepend="," property="yfyftsyy" >
- YFYFTSYY
- </isNotNull>
- <isNotNull prepend="," property="yfyftsey" >
- YFYFTSEY
- </isNotNull>
- <isNotNull prepend="," property="yfyftssy" >
- YFYFTSSY
- </isNotNull>
- <isNotNull prepend="," property="yfyftssiy" >
- YFYFTSSIY
- </isNotNull>
- <isNotNull prepend="," property="yfyftswy" >
- YFYFTSWY
- </isNotNull>
- <isNotNull prepend="," property="whhcllxr" >
- WHHCLLXR
- </isNotNull>
- <isNotNull prepend="," property="whhcllxdh" >
- WHHCLLXDH
- </isNotNull>
- <isNotNull prepend="," property="whhclrq1" >
- WHHCLRQ1
- </isNotNull>
- <isNotNull prepend="," property="whhclrq2" >
- WHHCLRQ2
- </isNotNull>
- <isNotNull prepend="," property="whhclrq3" >
- WHHCLRQ3
- </isNotNull>
- <isNotNull prepend="," property="whhclrq4" >
- WHHCLRQ4
- </isNotNull>
- <isNotNull prepend="," property="whhclrq5" >
- WHHCLRQ5
- </isNotNull>
- <isNotNull prepend="," property="whhclrq6" >
- WHHCLRQ6
- </isNotNull>
- <isNotNull prepend="," property="whhclfs1" >
- WHHCLFS1
- </isNotNull>
- <isNotNull prepend="," property="whhclfs2" >
- WHHCLFS2
- </isNotNull>
- <isNotNull prepend="," property="whhclfs3" >
- WHHCLFS3
- </isNotNull>
- <isNotNull prepend="," property="whhclfs4" >
- WHHCLFS4
- </isNotNull>
- <isNotNull prepend="," property="whhclfs5" >
- WHHCLFS5
- </isNotNull>
- <isNotNull prepend="," property="whhclfs6" >
- WHHCLFS6
- </isNotNull>
- <isNotNull prepend="," property="whhclsl1" >
- WHHCLSL1
- </isNotNull>
- <isNotNull prepend="," property="whhclsl2" >
- WHHCLSL2
- </isNotNull>
- <isNotNull prepend="," property="whhclsl3" >
- WHHCLSL3
- </isNotNull>
- <isNotNull prepend="," property="whhclsl4" >
- WHHCLSL4
- </isNotNull>
- <isNotNull prepend="," property="whhclsl5" >
- WHHCLSL5
- </isNotNull>
- <isNotNull prepend="," property="whhclsl6" >
- WHHCLSL6
- </isNotNull>
- <isNotNull prepend="," property="xssjsj1" >
- XSSJSJ1
- </isNotNull>
- <isNotNull prepend="," property="xssjsj2" >
- XSSJSJ2
- </isNotNull>
- <isNotNull prepend="," property="xssjsj3" >
- XSSJSJ3
- </isNotNull>
- <isNotNull prepend="," property="xssjsj4" >
- XSSJSJ4
- </isNotNull>
- <isNotNull prepend="," property="xssjsj5" >
- XSSJSJ5
- </isNotNull>
- <isNotNull prepend="," property="xssjsj6" >
- XSSJSJ6
- </isNotNull>
- <isNotNull prepend="," property="wscl1" >
- WSCL1
- </isNotNull>
- <isNotNull prepend="," property="wscl2" >
- WSCL2
- </isNotNull>
- <isNotNull prepend="," property="wscl3" >
- WSCL3
- </isNotNull>
- <isNotNull prepend="," property="wscl4" >
- WSCL4
- </isNotNull>
- <isNotNull prepend="," property="wscl5" >
- WSCL5
- </isNotNull>
- <isNotNull prepend="," property="wscl6" >
- WSCL6
- </isNotNull>
- <isNotNull prepend="," property="wscl7" >
- WSCL7
- </isNotNull>
- <isNotNull prepend="," property="sbtj1" >
- SBTJ1
- </isNotNull>
- <isNotNull prepend="," property="sbtj2" >
- SBTJ2
- </isNotNull>
- <isNotNull prepend="," property="sbtj3" >
- SBTJ3
- </isNotNull>
- <isNotNull prepend="," property="sbtj4" >
- SBTJ4
- </isNotNull>
- <isNotNull prepend="," property="sbtj5" >
- SBTJ5
- </isNotNull>
- <isNotNull prepend="," property="sbtj6" >
- SBTJ6
- </isNotNull>
- <isNotNull prepend="," property="sbtj7" >
- SBTJ7
- </isNotNull>
- <isNotNull prepend="," property="sbtjjn" >
- SBTJJN
- </isNotNull>
- <isNotNull prepend="," property="sbtjqn" >
- SBTJQN
- </isNotNull>
- <isNotNull prepend="," property="dnzs" >
- DNZS
- </isNotNull>
- <isNotNull prepend="," property="dnws" >
- DNWS
- </isNotNull>
- <isNotNull prepend="," property="gtjz" >
- GTJZ
- </isNotNull>
- <isNotNull prepend="," property="wzhzs" >
- WZHZS
- </isNotNull>
- <isNotNull prepend="," property="yffbt6" >
- YFFBT6
- </isNotNull>
- <isNotNull prepend="," property="yffbt7" >
- YFFBT7
- </isNotNull>
- <isNotNull prepend="," property="bytts" >
- BYTTS
- </isNotNull>
- <isNotNull prepend="," property="yftts" >
- YFTTS
- </isNotNull>
- <isNotNull prepend="," property="byttszb" >
- BYTTSZB
- </isNotNull>
- <isNotNull prepend="," property="qyyttszb" >
- QYYTTSZB
- </isNotNull>
- <isNotNull prepend="," property="qeyttszb" >
- QEYTTSZB
- </isNotNull>
- <isNotNull prepend="," property="qsyttszb" >
- QSYTTSZB
- </isNotNull>
- <isNotNull prepend="," property="mztts" >
- MZTTS
- </isNotNull>
- <isNotNull prepend="," property="gztts" >
- GZTTS
- </isNotNull>
- <isNotNull prepend="," property="week1" >
- WEEK1
- </isNotNull>
- <isNotNull prepend="," property="week2" >
- WEEK2
- </isNotNull>
- <isNotNull prepend="," property="week3" >
- WEEK3
- </isNotNull>
- <isNotNull prepend="," property="week4" >
- WEEK4
- </isNotNull>
- <isNotNull prepend="," property="week5" >
- WEEK5
- </isNotNull>
- <isNotNull prepend="," property="week6" >
- WEEK6
- </isNotNull>
- <isNotNull prepend="," property="week7" >
- WEEK7
- </isNotNull>
- <isNotNull prepend="," property="weekprice1" >
- WEEKPRICE1
- </isNotNull>
- <isNotNull prepend="," property="weekprice2" >
- WEEKPRICE2
- </isNotNull>
- <isNotNull prepend="," property="weekprice3" >
- WEEKPRICE3
- </isNotNull>
- <isNotNull prepend="," property="weekprice4" >
- WEEKPRICE4
- </isNotNull>
- <isNotNull prepend="," property="weekprice5" >
- WEEKPRICE5
- </isNotNull>
- <isNotNull prepend="," property="weekprice6" >
- WEEKPRICE6
- </isNotNull>
- <isNotNull prepend="," property="weekprice7" >
- WEEKPRICE7
- </isNotNull>
- )
- </dynamic>
- values
- <dynamic prepend="(" >
- <isNotNull prepend="," property="id" >
- #id:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="mcid" >
- #mcid:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="clsjyxs" >
- #clsjyxs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="clsjyst" >
- #clsjyst:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="clsjzz" >
- #clsjzz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="clsjhbzz" >
- #clsjhbzz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="clsjbrz" >
- #clsjbrz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="clsjbyz" >
- #clsjbyz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="clsjyfz" >
- #clsjyfz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="clsjxszs" >
- #clsjxszs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="clsjstzs" >
- #clsjstzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="bypzs" >
- #bypzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="byfms" >
- #byfms:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="byczs" >
- #byczs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="bydqxsts" >
- #bydqxsts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="bydqzj" >
- #bydqzj:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="byzzchl" >
- #byzzchl:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttsjbytts" >
- #ttsjbytts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttsjqyytts" >
- #ttsjqyytts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttsjqeytts" >
- #ttsjqeytts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttsjzz" >
- #ttsjzz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttsjfz" >
- #ttsjfz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttsjqsytts" >
- #ttsjqsytts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="xssjweek" >
- #xssjweek:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="xssjmonth" >
- #xssjmonth:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="xssjyear" >
- #xssjyear:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="pzjgfbpz" >
- #pzjgfbpz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="pzjgfbhy" >
- #pzjgfbhy:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="pzjgfblc" >
- #pzjgfblc:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="pzjgfbfq" >
- #pzjgfbfq:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="pzjgfbqt" >
- #pzjgfbqt:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="pzjgfbpzfml" >
- #pzjgfbpzfml:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtjzs" >
- #fmzzfbtjzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtrzs" >
- #fmzzfbtrzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtjxs" >
- #fmzzfbtjxs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtmnys" >
- #fmzzfbtmnys:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtsts" >
- #fmzzfbtsts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtfmchl" >
- #fmzzfbtfmchl:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttfbtsw" >
- #ttfbtsw:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttfbttctg" >
- #ttfbttctg:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttfbtcqbfq" >
- #ttfbtcqbfq:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttfbtczss" >
- #ttfbtczss:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttfbtcdyz" >
- #ttfbtcdyz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttfbtyybl" >
- #ttfbtyybl:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttfbtztjb" >
- #ttfbtztjb:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttfbtqt" >
- #ttfbtqt:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts1" >
- #ydtts1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts2" >
- #ydtts2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts3" >
- #ydtts3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts4" >
- #ydtts4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts5" >
- #ydtts5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts6" >
- #ydtts6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts7" >
- #ydtts7:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts8" >
- #ydtts8:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts9" >
- #ydtts9:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts10" >
- #ydtts10:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts11" >
- #ydtts11:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts12" >
- #ydtts12:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yffbt1" >
- #yffbt1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yffbt2" >
- #yffbt2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yffbt3" >
- #yffbt3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yffbt4" >
- #yffbt4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yffbt5" >
- #yffbt5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yfyftsyy" >
- #yfyftsyy:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yfyftsey" >
- #yfyftsey:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yfyftssy" >
- #yfyftssy:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yfyftssiy" >
- #yfyftssiy:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yfyftswy" >
- #yfyftswy:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhcllxr" >
- #whhcllxr:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhcllxdh" >
- #whhcllxdh:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclrq1" >
- #whhclrq1:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="whhclrq2" >
- #whhclrq2:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="whhclrq3" >
- #whhclrq3:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="whhclrq4" >
- #whhclrq4:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="whhclrq5" >
- #whhclrq5:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="whhclrq6" >
- #whhclrq6:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="whhclfs1" >
- #whhclfs1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclfs2" >
- #whhclfs2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclfs3" >
- #whhclfs3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclfs4" >
- #whhclfs4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclfs5" >
- #whhclfs5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclfs6" >
- #whhclfs6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclsl1" >
- #whhclsl1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclsl2" >
- #whhclsl2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclsl3" >
- #whhclsl3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclsl4" >
- #whhclsl4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclsl5" >
- #whhclsl5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclsl6" >
- #whhclsl6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="xssjsj1" >
- #xssjsj1:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="xssjsj2" >
- #xssjsj2:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="xssjsj3" >
- #xssjsj3:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="xssjsj4" >
- #xssjsj4:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="xssjsj5" >
- #xssjsj5:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="xssjsj6" >
- #xssjsj6:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="wscl1" >
- #wscl1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="wscl2" >
- #wscl2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="wscl3" >
- #wscl3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="wscl4" >
- #wscl4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="wscl5" >
- #wscl5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="wscl6" >
- #wscl6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="wscl7" >
- #wscl7:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtj1" >
- #sbtj1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtj2" >
- #sbtj2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtj3" >
- #sbtj3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtj4" >
- #sbtj4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtj5" >
- #sbtj5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtj6" >
- #sbtj6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtj7" >
- #sbtj7:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtjjn" >
- #sbtjjn:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtjqn" >
- #sbtjqn:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="dnzs" >
- #dnzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="dnws" >
- #dnws:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="gtjz" >
- #gtjz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="wzhzs" >
- #wzhzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yffbt6" >
- #yffbt6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yffbt7" >
- #yffbt7:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="bytts" >
- #bytts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yftts" >
- #yftts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="byttszb" >
- #byttszb:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="qyyttszb" >
- #qyyttszb:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="qeyttszb" >
- #qeyttszb:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="qsyttszb" >
- #qsyttszb:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="mztts" >
- #mztts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="gztts" >
- #gztts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="week1" >
- #week1:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="week2" >
- #week2:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="week3" >
- #week3:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="week4" >
- #week4:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="week5" >
- #week5:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="week6" >
- #week6:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="week7" >
- #week7:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="weekprice1" >
- #weekprice1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="weekprice2" >
- #weekprice2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="weekprice3" >
- #weekprice3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="weekprice4" >
- #weekprice4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="weekprice5" >
- #weekprice5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="weekprice6" >
- #weekprice6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="weekprice7" >
- #weekprice7:VARCHAR#
- </isNotNull>
- )
- </dynamic>
- </insert>
- <select id="ibatorgenerated_countByExample" parameterClass="com.huimv.dp.dataobject.DpSjlrsyExample" resultClass="java.lang.Integer" >
- <!--
- WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
- This element was generated on Fri Aug 02 14:27:27 CST 2019.
- -->
- select count(*) from dp_sjlr_sy
- <include refid="dp_sjlr_sy.ibatorgenerated_Example_Where_Clause" />
- </select>
- <update id="ibatorgenerated_updateByExampleSelective" >
- <!--
- WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
- This element was generated on Fri Aug 02 14:27:27 CST 2019.
- -->
- update dp_sjlr_sy
- <dynamic prepend="set" >
- <isNotNull prepend="," property="record.id" >
- ID = #record.id:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="record.mcid" >
- MCID = #record.mcid:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="record.clsjyxs" >
- CLSJYXS = #record.clsjyxs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.clsjyst" >
- CLSJYST = #record.clsjyst:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.clsjzz" >
- CLSJZZ = #record.clsjzz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.clsjhbzz" >
- CLSJHBZZ = #record.clsjhbzz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.clsjbrz" >
- CLSJBRZ = #record.clsjbrz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.clsjbyz" >
- CLSJBYZ = #record.clsjbyz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.clsjyfz" >
- CLSJYFZ = #record.clsjyfz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.clsjxszs" >
- CLSJXSZS = #record.clsjxszs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.clsjstzs" >
- CLSJSTZS = #record.clsjstzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.bypzs" >
- BYPZS = #record.bypzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.byfms" >
- BYFMS = #record.byfms:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.byczs" >
- BYCZS = #record.byczs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.bydqxsts" >
- BYDQXSTS = #record.bydqxsts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.bydqzj" >
- BYDQZJ = #record.bydqzj:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.byzzchl" >
- BYZZCHL = #record.byzzchl:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ttsjbytts" >
- TTSJBYTTS = #record.ttsjbytts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ttsjqyytts" >
- TTSJQYYTTS = #record.ttsjqyytts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ttsjqeytts" >
- TTSJQEYTTS = #record.ttsjqeytts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ttsjzz" >
- TTSJZZ = #record.ttsjzz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ttsjfz" >
- TTSJFZ = #record.ttsjfz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ttsjqsytts" >
- TTSJQSYTTS = #record.ttsjqsytts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.xssjweek" >
- XSSJWEEK = #record.xssjweek:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.xssjmonth" >
- XSSJMONTH = #record.xssjmonth:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.xssjyear" >
- XSSJYEAR = #record.xssjyear:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.pzjgfbpz" >
- PZJGFBPZ = #record.pzjgfbpz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.pzjgfbhy" >
- PZJGFBHY = #record.pzjgfbhy:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.pzjgfblc" >
- PZJGFBLC = #record.pzjgfblc:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.pzjgfbfq" >
- PZJGFBFQ = #record.pzjgfbfq:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.pzjgfbqt" >
- PZJGFBQT = #record.pzjgfbqt:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.pzjgfbpzfml" >
- PZJGFBPZFML = #record.pzjgfbpzfml:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.fmzzfbtjzs" >
- FMZZFBTJZS = #record.fmzzfbtjzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.fmzzfbtrzs" >
- FMZZFBTRZS = #record.fmzzfbtrzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.fmzzfbtjxs" >
- FMZZFBTJXS = #record.fmzzfbtjxs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.fmzzfbtmnys" >
- FMZZFBTMNYS = #record.fmzzfbtmnys:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.fmzzfbtsts" >
- FMZZFBTSTS = #record.fmzzfbtsts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.fmzzfbtfmchl" >
- FMZZFBTFMCHL = #record.fmzzfbtfmchl:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ttfbtsw" >
- TTFBTSW = #record.ttfbtsw:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ttfbttctg" >
- TTFBTTCTG = #record.ttfbttctg:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ttfbtcqbfq" >
- TTFBTCQBFQ = #record.ttfbtcqbfq:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ttfbtczss" >
- TTFBTCZSS = #record.ttfbtczss:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ttfbtcdyz" >
- TTFBTCDYZ = #record.ttfbtcdyz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ttfbtyybl" >
- TTFBTYYBL = #record.ttfbtyybl:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ttfbtztjb" >
- TTFBTZTJB = #record.ttfbtztjb:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ttfbtqt" >
- TTFBTQT = #record.ttfbtqt:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ydtts1" >
- YDTTS1 = #record.ydtts1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ydtts2" >
- YDTTS2 = #record.ydtts2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ydtts3" >
- YDTTS3 = #record.ydtts3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ydtts4" >
- YDTTS4 = #record.ydtts4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ydtts5" >
- YDTTS5 = #record.ydtts5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ydtts6" >
- YDTTS6 = #record.ydtts6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ydtts7" >
- YDTTS7 = #record.ydtts7:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ydtts8" >
- YDTTS8 = #record.ydtts8:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ydtts9" >
- YDTTS9 = #record.ydtts9:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ydtts10" >
- YDTTS10 = #record.ydtts10:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ydtts11" >
- YDTTS11 = #record.ydtts11:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.ydtts12" >
- YDTTS12 = #record.ydtts12:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.yffbt1" >
- YFFBT1 = #record.yffbt1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.yffbt2" >
- YFFBT2 = #record.yffbt2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.yffbt3" >
- YFFBT3 = #record.yffbt3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.yffbt4" >
- YFFBT4 = #record.yffbt4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.yffbt5" >
- YFFBT5 = #record.yffbt5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.yfyftsyy" >
- YFYFTSYY = #record.yfyftsyy:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.yfyftsey" >
- YFYFTSEY = #record.yfyftsey:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.yfyftssy" >
- YFYFTSSY = #record.yfyftssy:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.yfyftssiy" >
- YFYFTSSIY = #record.yfyftssiy:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.yfyftswy" >
- YFYFTSWY = #record.yfyftswy:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.whhcllxr" >
- WHHCLLXR = #record.whhcllxr:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.whhcllxdh" >
- WHHCLLXDH = #record.whhcllxdh:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclrq1" >
- WHHCLRQ1 = #record.whhclrq1:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclrq2" >
- WHHCLRQ2 = #record.whhclrq2:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclrq3" >
- WHHCLRQ3 = #record.whhclrq3:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclrq4" >
- WHHCLRQ4 = #record.whhclrq4:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclrq5" >
- WHHCLRQ5 = #record.whhclrq5:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclrq6" >
- WHHCLRQ6 = #record.whhclrq6:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclfs1" >
- WHHCLFS1 = #record.whhclfs1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclfs2" >
- WHHCLFS2 = #record.whhclfs2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclfs3" >
- WHHCLFS3 = #record.whhclfs3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclfs4" >
- WHHCLFS4 = #record.whhclfs4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclfs5" >
- WHHCLFS5 = #record.whhclfs5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclfs6" >
- WHHCLFS6 = #record.whhclfs6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclsl1" >
- WHHCLSL1 = #record.whhclsl1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclsl2" >
- WHHCLSL2 = #record.whhclsl2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclsl3" >
- WHHCLSL3 = #record.whhclsl3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclsl4" >
- WHHCLSL4 = #record.whhclsl4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclsl5" >
- WHHCLSL5 = #record.whhclsl5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.whhclsl6" >
- WHHCLSL6 = #record.whhclsl6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.xssjsj1" >
- XSSJSJ1 = #record.xssjsj1:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="record.xssjsj2" >
- XSSJSJ2 = #record.xssjsj2:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="record.xssjsj3" >
- XSSJSJ3 = #record.xssjsj3:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="record.xssjsj4" >
- XSSJSJ4 = #record.xssjsj4:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="record.xssjsj5" >
- XSSJSJ5 = #record.xssjsj5:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="record.xssjsj6" >
- XSSJSJ6 = #record.xssjsj6:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="record.wscl1" >
- WSCL1 = #record.wscl1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.wscl2" >
- WSCL2 = #record.wscl2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.wscl3" >
- WSCL3 = #record.wscl3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.wscl4" >
- WSCL4 = #record.wscl4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.wscl5" >
- WSCL5 = #record.wscl5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.wscl6" >
- WSCL6 = #record.wscl6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.wscl7" >
- WSCL7 = #record.wscl7:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.sbtj1" >
- SBTJ1 = #record.sbtj1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.sbtj2" >
- SBTJ2 = #record.sbtj2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.sbtj3" >
- SBTJ3 = #record.sbtj3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.sbtj4" >
- SBTJ4 = #record.sbtj4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.sbtj5" >
- SBTJ5 = #record.sbtj5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.sbtj6" >
- SBTJ6 = #record.sbtj6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.sbtj7" >
- SBTJ7 = #record.sbtj7:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.sbtjjn" >
- SBTJJN = #record.sbtjjn:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.sbtjqn" >
- SBTJQN = #record.sbtjqn:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.dnzs" >
- DNZS = #record.dnzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.dnws" >
- DNWS = #record.dnws:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.gtjz" >
- GTJZ = #record.gtjz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.wzhzs" >
- WZHZS = #record.wzhzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.yffbt6" >
- YFFBT6 = #record.yffbt6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.yffbt7" >
- YFFBT7 = #record.yffbt7:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.bytts" >
- BYTTS = #record.bytts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.yftts" >
- YFTTS = #record.yftts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.byttszb" >
- BYTTSZB = #record.byttszb:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.qyyttszb" >
- QYYTTSZB = #record.qyyttszb:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.qeyttszb" >
- QEYTTSZB = #record.qeyttszb:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.qsyttszb" >
- QSYTTSZB = #record.qsyttszb:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.mztts" >
- MZTTS = #record.mztts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.gztts" >
- GZTTS = #record.gztts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.week1" >
- WEEK1 = #record.week1:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="record.week2" >
- WEEK2 = #record.week2:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="record.week3" >
- WEEK3 = #record.week3:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="record.week4" >
- WEEK4 = #record.week4:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="record.week5" >
- WEEK5 = #record.week5:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="record.week6" >
- WEEK6 = #record.week6:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="record.week7" >
- WEEK7 = #record.week7:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="record.weekprice1" >
- WEEKPRICE1 = #record.weekprice1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.weekprice2" >
- WEEKPRICE2 = #record.weekprice2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.weekprice3" >
- WEEKPRICE3 = #record.weekprice3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.weekprice4" >
- WEEKPRICE4 = #record.weekprice4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.weekprice5" >
- WEEKPRICE5 = #record.weekprice5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.weekprice6" >
- WEEKPRICE6 = #record.weekprice6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="record.weekprice7" >
- WEEKPRICE7 = #record.weekprice7:VARCHAR#
- </isNotNull>
- </dynamic>
- <isParameterPresent >
- <include refid="dp_sjlr_sy.ibatorgenerated_Example_Where_Clause" />
- </isParameterPresent>
- </update>
- <update id="ibatorgenerated_updateByExample" >
- <!--
- WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
- This element was generated on Fri Aug 02 14:27:27 CST 2019.
- -->
- update dp_sjlr_sy
- set ID = #record.id:INTEGER#,
- MCID = #record.mcid:INTEGER#,
- CLSJYXS = #record.clsjyxs:VARCHAR#,
- CLSJYST = #record.clsjyst:VARCHAR#,
- CLSJZZ = #record.clsjzz:VARCHAR#,
- CLSJHBZZ = #record.clsjhbzz:VARCHAR#,
- CLSJBRZ = #record.clsjbrz:VARCHAR#,
- CLSJBYZ = #record.clsjbyz:VARCHAR#,
- CLSJYFZ = #record.clsjyfz:VARCHAR#,
- CLSJXSZS = #record.clsjxszs:VARCHAR#,
- CLSJSTZS = #record.clsjstzs:VARCHAR#,
- BYPZS = #record.bypzs:VARCHAR#,
- BYFMS = #record.byfms:VARCHAR#,
- BYCZS = #record.byczs:VARCHAR#,
- BYDQXSTS = #record.bydqxsts:VARCHAR#,
- BYDQZJ = #record.bydqzj:VARCHAR#,
- BYZZCHL = #record.byzzchl:VARCHAR#,
- TTSJBYTTS = #record.ttsjbytts:VARCHAR#,
- TTSJQYYTTS = #record.ttsjqyytts:VARCHAR#,
- TTSJQEYTTS = #record.ttsjqeytts:VARCHAR#,
- TTSJZZ = #record.ttsjzz:VARCHAR#,
- TTSJFZ = #record.ttsjfz:VARCHAR#,
- TTSJQSYTTS = #record.ttsjqsytts:VARCHAR#,
- XSSJWEEK = #record.xssjweek:VARCHAR#,
- XSSJMONTH = #record.xssjmonth:VARCHAR#,
- XSSJYEAR = #record.xssjyear:VARCHAR#,
- PZJGFBPZ = #record.pzjgfbpz:VARCHAR#,
- PZJGFBHY = #record.pzjgfbhy:VARCHAR#,
- PZJGFBLC = #record.pzjgfblc:VARCHAR#,
- PZJGFBFQ = #record.pzjgfbfq:VARCHAR#,
- PZJGFBQT = #record.pzjgfbqt:VARCHAR#,
- PZJGFBPZFML = #record.pzjgfbpzfml:VARCHAR#,
- FMZZFBTJZS = #record.fmzzfbtjzs:VARCHAR#,
- FMZZFBTRZS = #record.fmzzfbtrzs:VARCHAR#,
- FMZZFBTJXS = #record.fmzzfbtjxs:VARCHAR#,
- FMZZFBTMNYS = #record.fmzzfbtmnys:VARCHAR#,
- FMZZFBTSTS = #record.fmzzfbtsts:VARCHAR#,
- FMZZFBTFMCHL = #record.fmzzfbtfmchl:VARCHAR#,
- TTFBTSW = #record.ttfbtsw:VARCHAR#,
- TTFBTTCTG = #record.ttfbttctg:VARCHAR#,
- TTFBTCQBFQ = #record.ttfbtcqbfq:VARCHAR#,
- TTFBTCZSS = #record.ttfbtczss:VARCHAR#,
- TTFBTCDYZ = #record.ttfbtcdyz:VARCHAR#,
- TTFBTYYBL = #record.ttfbtyybl:VARCHAR#,
- TTFBTZTJB = #record.ttfbtztjb:VARCHAR#,
- TTFBTQT = #record.ttfbtqt:VARCHAR#,
- YDTTS1 = #record.ydtts1:VARCHAR#,
- YDTTS2 = #record.ydtts2:VARCHAR#,
- YDTTS3 = #record.ydtts3:VARCHAR#,
- YDTTS4 = #record.ydtts4:VARCHAR#,
- YDTTS5 = #record.ydtts5:VARCHAR#,
- YDTTS6 = #record.ydtts6:VARCHAR#,
- YDTTS7 = #record.ydtts7:VARCHAR#,
- YDTTS8 = #record.ydtts8:VARCHAR#,
- YDTTS9 = #record.ydtts9:VARCHAR#,
- YDTTS10 = #record.ydtts10:VARCHAR#,
- YDTTS11 = #record.ydtts11:VARCHAR#,
- YDTTS12 = #record.ydtts12:VARCHAR#,
- YFFBT1 = #record.yffbt1:VARCHAR#,
- YFFBT2 = #record.yffbt2:VARCHAR#,
- YFFBT3 = #record.yffbt3:VARCHAR#,
- YFFBT4 = #record.yffbt4:VARCHAR#,
- YFFBT5 = #record.yffbt5:VARCHAR#,
- YFYFTSYY = #record.yfyftsyy:VARCHAR#,
- YFYFTSEY = #record.yfyftsey:VARCHAR#,
- YFYFTSSY = #record.yfyftssy:VARCHAR#,
- YFYFTSSIY = #record.yfyftssiy:VARCHAR#,
- YFYFTSWY = #record.yfyftswy:VARCHAR#,
- WHHCLLXR = #record.whhcllxr:VARCHAR#,
- WHHCLLXDH = #record.whhcllxdh:VARCHAR#,
- WHHCLRQ1 = #record.whhclrq1:TIMESTAMP#,
- WHHCLRQ2 = #record.whhclrq2:TIMESTAMP#,
- WHHCLRQ3 = #record.whhclrq3:TIMESTAMP#,
- WHHCLRQ4 = #record.whhclrq4:TIMESTAMP#,
- WHHCLRQ5 = #record.whhclrq5:TIMESTAMP#,
- WHHCLRQ6 = #record.whhclrq6:TIMESTAMP#,
- WHHCLFS1 = #record.whhclfs1:VARCHAR#,
- WHHCLFS2 = #record.whhclfs2:VARCHAR#,
- WHHCLFS3 = #record.whhclfs3:VARCHAR#,
- WHHCLFS4 = #record.whhclfs4:VARCHAR#,
- WHHCLFS5 = #record.whhclfs5:VARCHAR#,
- WHHCLFS6 = #record.whhclfs6:VARCHAR#,
- WHHCLSL1 = #record.whhclsl1:VARCHAR#,
- WHHCLSL2 = #record.whhclsl2:VARCHAR#,
- WHHCLSL3 = #record.whhclsl3:VARCHAR#,
- WHHCLSL4 = #record.whhclsl4:VARCHAR#,
- WHHCLSL5 = #record.whhclsl5:VARCHAR#,
- WHHCLSL6 = #record.whhclsl6:VARCHAR#,
- XSSJSJ1 = #record.xssjsj1:TIMESTAMP#,
- XSSJSJ2 = #record.xssjsj2:TIMESTAMP#,
- XSSJSJ3 = #record.xssjsj3:TIMESTAMP#,
- XSSJSJ4 = #record.xssjsj4:TIMESTAMP#,
- XSSJSJ5 = #record.xssjsj5:TIMESTAMP#,
- XSSJSJ6 = #record.xssjsj6:TIMESTAMP#,
- WSCL1 = #record.wscl1:VARCHAR#,
- WSCL2 = #record.wscl2:VARCHAR#,
- WSCL3 = #record.wscl3:VARCHAR#,
- WSCL4 = #record.wscl4:VARCHAR#,
- WSCL5 = #record.wscl5:VARCHAR#,
- WSCL6 = #record.wscl6:VARCHAR#,
- WSCL7 = #record.wscl7:VARCHAR#,
- SBTJ1 = #record.sbtj1:VARCHAR#,
- SBTJ2 = #record.sbtj2:VARCHAR#,
- SBTJ3 = #record.sbtj3:VARCHAR#,
- SBTJ4 = #record.sbtj4:VARCHAR#,
- SBTJ5 = #record.sbtj5:VARCHAR#,
- SBTJ6 = #record.sbtj6:VARCHAR#,
- SBTJ7 = #record.sbtj7:VARCHAR#,
- SBTJJN = #record.sbtjjn:VARCHAR#,
- SBTJQN = #record.sbtjqn:VARCHAR#,
- DNZS = #record.dnzs:VARCHAR#,
- DNWS = #record.dnws:VARCHAR#,
- GTJZ = #record.gtjz:VARCHAR#,
- WZHZS = #record.wzhzs:VARCHAR#,
- YFFBT6 = #record.yffbt6:VARCHAR#,
- YFFBT7 = #record.yffbt7:VARCHAR#,
- BYTTS = #record.bytts:VARCHAR#,
- YFTTS = #record.yftts:VARCHAR#,
- BYTTSZB = #record.byttszb:VARCHAR#,
- QYYTTSZB = #record.qyyttszb:VARCHAR#,
- QEYTTSZB = #record.qeyttszb:VARCHAR#,
- QSYTTSZB = #record.qsyttszb:VARCHAR#,
- MZTTS = #record.mztts:VARCHAR#,
- GZTTS = #record.gztts:VARCHAR#,
- WEEK1 = #record.week1:INTEGER#,
- WEEK2 = #record.week2:INTEGER#,
- WEEK3 = #record.week3:INTEGER#,
- WEEK4 = #record.week4:INTEGER#,
- WEEK5 = #record.week5:INTEGER#,
- WEEK6 = #record.week6:INTEGER#,
- WEEK7 = #record.week7:INTEGER#,
- WEEKPRICE1 = #record.weekprice1:VARCHAR#,
- WEEKPRICE2 = #record.weekprice2:VARCHAR#,
- WEEKPRICE3 = #record.weekprice3:VARCHAR#,
- WEEKPRICE4 = #record.weekprice4:VARCHAR#,
- WEEKPRICE5 = #record.weekprice5:VARCHAR#,
- WEEKPRICE6 = #record.weekprice6:VARCHAR#,
- WEEKPRICE7 = #record.weekprice7:VARCHAR#
- <isParameterPresent >
- <include refid="dp_sjlr_sy.ibatorgenerated_Example_Where_Clause" />
- </isParameterPresent>
- </update>
- <update id="ibatorgenerated_updateByPrimaryKeySelective" parameterClass="com.huimv.dp.dataobject.DpSjlrsy" >
- <!--
- WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
- This element was generated on Fri Aug 02 14:27:27 CST 2019.
- -->
- update dp_sjlr_sy
- <dynamic prepend="set" >
- <isNotNull prepend="," property="mcid" >
- MCID = #mcid:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="clsjyxs" >
- CLSJYXS = #clsjyxs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="clsjyst" >
- CLSJYST = #clsjyst:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="clsjzz" >
- CLSJZZ = #clsjzz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="clsjhbzz" >
- CLSJHBZZ = #clsjhbzz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="clsjbrz" >
- CLSJBRZ = #clsjbrz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="clsjbyz" >
- CLSJBYZ = #clsjbyz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="clsjyfz" >
- CLSJYFZ = #clsjyfz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="clsjxszs" >
- CLSJXSZS = #clsjxszs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="clsjstzs" >
- CLSJSTZS = #clsjstzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="bypzs" >
- BYPZS = #bypzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="byfms" >
- BYFMS = #byfms:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="byczs" >
- BYCZS = #byczs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="bydqxsts" >
- BYDQXSTS = #bydqxsts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="bydqzj" >
- BYDQZJ = #bydqzj:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="byzzchl" >
- BYZZCHL = #byzzchl:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttsjbytts" >
- TTSJBYTTS = #ttsjbytts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttsjqyytts" >
- TTSJQYYTTS = #ttsjqyytts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttsjqeytts" >
- TTSJQEYTTS = #ttsjqeytts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttsjzz" >
- TTSJZZ = #ttsjzz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttsjfz" >
- TTSJFZ = #ttsjfz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttsjqsytts" >
- TTSJQSYTTS = #ttsjqsytts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="xssjweek" >
- XSSJWEEK = #xssjweek:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="xssjmonth" >
- XSSJMONTH = #xssjmonth:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="xssjyear" >
- XSSJYEAR = #xssjyear:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="pzjgfbpz" >
- PZJGFBPZ = #pzjgfbpz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="pzjgfbhy" >
- PZJGFBHY = #pzjgfbhy:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="pzjgfblc" >
- PZJGFBLC = #pzjgfblc:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="pzjgfbfq" >
- PZJGFBFQ = #pzjgfbfq:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="pzjgfbqt" >
- PZJGFBQT = #pzjgfbqt:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="pzjgfbpzfml" >
- PZJGFBPZFML = #pzjgfbpzfml:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtjzs" >
- FMZZFBTJZS = #fmzzfbtjzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtrzs" >
- FMZZFBTRZS = #fmzzfbtrzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtjxs" >
- FMZZFBTJXS = #fmzzfbtjxs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtmnys" >
- FMZZFBTMNYS = #fmzzfbtmnys:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtsts" >
- FMZZFBTSTS = #fmzzfbtsts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="fmzzfbtfmchl" >
- FMZZFBTFMCHL = #fmzzfbtfmchl:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttfbtsw" >
- TTFBTSW = #ttfbtsw:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttfbttctg" >
- TTFBTTCTG = #ttfbttctg:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttfbtcqbfq" >
- TTFBTCQBFQ = #ttfbtcqbfq:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttfbtczss" >
- TTFBTCZSS = #ttfbtczss:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttfbtcdyz" >
- TTFBTCDYZ = #ttfbtcdyz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttfbtyybl" >
- TTFBTYYBL = #ttfbtyybl:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttfbtztjb" >
- TTFBTZTJB = #ttfbtztjb:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ttfbtqt" >
- TTFBTQT = #ttfbtqt:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts1" >
- YDTTS1 = #ydtts1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts2" >
- YDTTS2 = #ydtts2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts3" >
- YDTTS3 = #ydtts3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts4" >
- YDTTS4 = #ydtts4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts5" >
- YDTTS5 = #ydtts5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts6" >
- YDTTS6 = #ydtts6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts7" >
- YDTTS7 = #ydtts7:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts8" >
- YDTTS8 = #ydtts8:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts9" >
- YDTTS9 = #ydtts9:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts10" >
- YDTTS10 = #ydtts10:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts11" >
- YDTTS11 = #ydtts11:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="ydtts12" >
- YDTTS12 = #ydtts12:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yffbt1" >
- YFFBT1 = #yffbt1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yffbt2" >
- YFFBT2 = #yffbt2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yffbt3" >
- YFFBT3 = #yffbt3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yffbt4" >
- YFFBT4 = #yffbt4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yffbt5" >
- YFFBT5 = #yffbt5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yfyftsyy" >
- YFYFTSYY = #yfyftsyy:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yfyftsey" >
- YFYFTSEY = #yfyftsey:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yfyftssy" >
- YFYFTSSY = #yfyftssy:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yfyftssiy" >
- YFYFTSSIY = #yfyftssiy:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yfyftswy" >
- YFYFTSWY = #yfyftswy:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhcllxr" >
- WHHCLLXR = #whhcllxr:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhcllxdh" >
- WHHCLLXDH = #whhcllxdh:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclrq1" >
- WHHCLRQ1 = #whhclrq1:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="whhclrq2" >
- WHHCLRQ2 = #whhclrq2:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="whhclrq3" >
- WHHCLRQ3 = #whhclrq3:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="whhclrq4" >
- WHHCLRQ4 = #whhclrq4:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="whhclrq5" >
- WHHCLRQ5 = #whhclrq5:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="whhclrq6" >
- WHHCLRQ6 = #whhclrq6:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="whhclfs1" >
- WHHCLFS1 = #whhclfs1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclfs2" >
- WHHCLFS2 = #whhclfs2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclfs3" >
- WHHCLFS3 = #whhclfs3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclfs4" >
- WHHCLFS4 = #whhclfs4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclfs5" >
- WHHCLFS5 = #whhclfs5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclfs6" >
- WHHCLFS6 = #whhclfs6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclsl1" >
- WHHCLSL1 = #whhclsl1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclsl2" >
- WHHCLSL2 = #whhclsl2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclsl3" >
- WHHCLSL3 = #whhclsl3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclsl4" >
- WHHCLSL4 = #whhclsl4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclsl5" >
- WHHCLSL5 = #whhclsl5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="whhclsl6" >
- WHHCLSL6 = #whhclsl6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="xssjsj1" >
- XSSJSJ1 = #xssjsj1:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="xssjsj2" >
- XSSJSJ2 = #xssjsj2:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="xssjsj3" >
- XSSJSJ3 = #xssjsj3:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="xssjsj4" >
- XSSJSJ4 = #xssjsj4:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="xssjsj5" >
- XSSJSJ5 = #xssjsj5:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="xssjsj6" >
- XSSJSJ6 = #xssjsj6:TIMESTAMP#
- </isNotNull>
- <isNotNull prepend="," property="wscl1" >
- WSCL1 = #wscl1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="wscl2" >
- WSCL2 = #wscl2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="wscl3" >
- WSCL3 = #wscl3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="wscl4" >
- WSCL4 = #wscl4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="wscl5" >
- WSCL5 = #wscl5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="wscl6" >
- WSCL6 = #wscl6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="wscl7" >
- WSCL7 = #wscl7:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtj1" >
- SBTJ1 = #sbtj1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtj2" >
- SBTJ2 = #sbtj2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtj3" >
- SBTJ3 = #sbtj3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtj4" >
- SBTJ4 = #sbtj4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtj5" >
- SBTJ5 = #sbtj5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtj6" >
- SBTJ6 = #sbtj6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtj7" >
- SBTJ7 = #sbtj7:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtjjn" >
- SBTJJN = #sbtjjn:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="sbtjqn" >
- SBTJQN = #sbtjqn:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="dnzs" >
- DNZS = #dnzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="dnws" >
- DNWS = #dnws:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="gtjz" >
- GTJZ = #gtjz:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="wzhzs" >
- WZHZS = #wzhzs:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yffbt6" >
- YFFBT6 = #yffbt6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yffbt7" >
- YFFBT7 = #yffbt7:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="bytts" >
- BYTTS = #bytts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="yftts" >
- YFTTS = #yftts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="byttszb" >
- BYTTSZB = #byttszb:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="qyyttszb" >
- QYYTTSZB = #qyyttszb:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="qeyttszb" >
- QEYTTSZB = #qeyttszb:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="qsyttszb" >
- QSYTTSZB = #qsyttszb:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="mztts" >
- MZTTS = #mztts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="gztts" >
- GZTTS = #gztts:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="week1" >
- WEEK1 = #week1:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="week2" >
- WEEK2 = #week2:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="week3" >
- WEEK3 = #week3:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="week4" >
- WEEK4 = #week4:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="week5" >
- WEEK5 = #week5:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="week6" >
- WEEK6 = #week6:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="week7" >
- WEEK7 = #week7:INTEGER#
- </isNotNull>
- <isNotNull prepend="," property="weekprice1" >
- WEEKPRICE1 = #weekprice1:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="weekprice2" >
- WEEKPRICE2 = #weekprice2:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="weekprice3" >
- WEEKPRICE3 = #weekprice3:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="weekprice4" >
- WEEKPRICE4 = #weekprice4:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="weekprice5" >
- WEEKPRICE5 = #weekprice5:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="weekprice6" >
- WEEKPRICE6 = #weekprice6:VARCHAR#
- </isNotNull>
- <isNotNull prepend="," property="weekprice7" >
- WEEKPRICE7 = #weekprice7:VARCHAR#
- </isNotNull>
- </dynamic>
- where ID = #id:INTEGER#
- </update>
- <update id="ibatorgenerated_updateByPrimaryKey" parameterClass="com.huimv.dp.dataobject.DpSjlrsy" >
- <!--
- WARNING - This element is automatically generated by Apache iBATIS ibator, do not modify.
- This element was generated on Fri Aug 02 14:27:27 CST 2019.
- -->
- update dp_sjlr_sy
- set MCID = #mcid:INTEGER#,
- CLSJYXS = #clsjyxs:VARCHAR#,
- CLSJYST = #clsjyst:VARCHAR#,
- CLSJZZ = #clsjzz:VARCHAR#,
- CLSJHBZZ = #clsjhbzz:VARCHAR#,
- CLSJBRZ = #clsjbrz:VARCHAR#,
- CLSJBYZ = #clsjbyz:VARCHAR#,
- CLSJYFZ = #clsjyfz:VARCHAR#,
- CLSJXSZS = #clsjxszs:VARCHAR#,
- CLSJSTZS = #clsjstzs:VARCHAR#,
- BYPZS = #bypzs:VARCHAR#,
- BYFMS = #byfms:VARCHAR#,
- BYCZS = #byczs:VARCHAR#,
- BYDQXSTS = #bydqxsts:VARCHAR#,
- BYDQZJ = #bydqzj:VARCHAR#,
- BYZZCHL = #byzzchl:VARCHAR#,
- TTSJBYTTS = #ttsjbytts:VARCHAR#,
- TTSJQYYTTS = #ttsjqyytts:VARCHAR#,
- TTSJQEYTTS = #ttsjqeytts:VARCHAR#,
- TTSJZZ = #ttsjzz:VARCHAR#,
- TTSJFZ = #ttsjfz:VARCHAR#,
- TTSJQSYTTS = #ttsjqsytts:VARCHAR#,
- XSSJWEEK = #xssjweek:VARCHAR#,
- XSSJMONTH = #xssjmonth:VARCHAR#,
- XSSJYEAR = #xssjyear:VARCHAR#,
- PZJGFBPZ = #pzjgfbpz:VARCHAR#,
- PZJGFBHY = #pzjgfbhy:VARCHAR#,
- PZJGFBLC = #pzjgfblc:VARCHAR#,
- PZJGFBFQ = #pzjgfbfq:VARCHAR#,
- PZJGFBQT = #pzjgfbqt:VARCHAR#,
- PZJGFBPZFML = #pzjgfbpzfml:VARCHAR#,
- FMZZFBTJZS = #fmzzfbtjzs:VARCHAR#,
- FMZZFBTRZS = #fmzzfbtrzs:VARCHAR#,
- FMZZFBTJXS = #fmzzfbtjxs:VARCHAR#,
- FMZZFBTMNYS = #fmzzfbtmnys:VARCHAR#,
- FMZZFBTSTS = #fmzzfbtsts:VARCHAR#,
- FMZZFBTFMCHL = #fmzzfbtfmchl:VARCHAR#,
- TTFBTSW = #ttfbtsw:VARCHAR#,
- TTFBTTCTG = #ttfbttctg:VARCHAR#,
- TTFBTCQBFQ = #ttfbtcqbfq:VARCHAR#,
- TTFBTCZSS = #ttfbtczss:VARCHAR#,
- TTFBTCDYZ = #ttfbtcdyz:VARCHAR#,
- TTFBTYYBL = #ttfbtyybl:VARCHAR#,
- TTFBTZTJB = #ttfbtztjb:VARCHAR#,
- TTFBTQT = #ttfbtqt:VARCHAR#,
- YDTTS1 = #ydtts1:VARCHAR#,
- YDTTS2 = #ydtts2:VARCHAR#,
- YDTTS3 = #ydtts3:VARCHAR#,
- YDTTS4 = #ydtts4:VARCHAR#,
- YDTTS5 = #ydtts5:VARCHAR#,
- YDTTS6 = #ydtts6:VARCHAR#,
- YDTTS7 = #ydtts7:VARCHAR#,
- YDTTS8 = #ydtts8:VARCHAR#,
- YDTTS9 = #ydtts9:VARCHAR#,
- YDTTS10 = #ydtts10:VARCHAR#,
- YDTTS11 = #ydtts11:VARCHAR#,
- YDTTS12 = #ydtts12:VARCHAR#,
- YFFBT1 = #yffbt1:VARCHAR#,
- YFFBT2 = #yffbt2:VARCHAR#,
- YFFBT3 = #yffbt3:VARCHAR#,
- YFFBT4 = #yffbt4:VARCHAR#,
- YFFBT5 = #yffbt5:VARCHAR#,
- YFYFTSYY = #yfyftsyy:VARCHAR#,
- YFYFTSEY = #yfyftsey:VARCHAR#,
- YFYFTSSY = #yfyftssy:VARCHAR#,
- YFYFTSSIY = #yfyftssiy:VARCHAR#,
- YFYFTSWY = #yfyftswy:VARCHAR#,
- WHHCLLXR = #whhcllxr:VARCHAR#,
- WHHCLLXDH = #whhcllxdh:VARCHAR#,
- WHHCLRQ1 = #whhclrq1:TIMESTAMP#,
- WHHCLRQ2 = #whhclrq2:TIMESTAMP#,
- WHHCLRQ3 = #whhclrq3:TIMESTAMP#,
- WHHCLRQ4 = #whhclrq4:TIMESTAMP#,
- WHHCLRQ5 = #whhclrq5:TIMESTAMP#,
- WHHCLRQ6 = #whhclrq6:TIMESTAMP#,
- WHHCLFS1 = #whhclfs1:VARCHAR#,
- WHHCLFS2 = #whhclfs2:VARCHAR#,
- WHHCLFS3 = #whhclfs3:VARCHAR#,
- WHHCLFS4 = #whhclfs4:VARCHAR#,
- WHHCLFS5 = #whhclfs5:VARCHAR#,
- WHHCLFS6 = #whhclfs6:VARCHAR#,
- WHHCLSL1 = #whhclsl1:VARCHAR#,
- WHHCLSL2 = #whhclsl2:VARCHAR#,
- WHHCLSL3 = #whhclsl3:VARCHAR#,
- WHHCLSL4 = #whhclsl4:VARCHAR#,
- WHHCLSL5 = #whhclsl5:VARCHAR#,
- WHHCLSL6 = #whhclsl6:VARCHAR#,
- XSSJSJ1 = #xssjsj1:TIMESTAMP#,
- XSSJSJ2 = #xssjsj2:TIMESTAMP#,
- XSSJSJ3 = #xssjsj3:TIMESTAMP#,
- XSSJSJ4 = #xssjsj4:TIMESTAMP#,
- XSSJSJ5 = #xssjsj5:TIMESTAMP#,
- XSSJSJ6 = #xssjsj6:TIMESTAMP#,
- WSCL1 = #wscl1:VARCHAR#,
- WSCL2 = #wscl2:VARCHAR#,
- WSCL3 = #wscl3:VARCHAR#,
- WSCL4 = #wscl4:VARCHAR#,
- WSCL5 = #wscl5:VARCHAR#,
- WSCL6 = #wscl6:VARCHAR#,
- WSCL7 = #wscl7:VARCHAR#,
- SBTJ1 = #sbtj1:VARCHAR#,
- SBTJ2 = #sbtj2:VARCHAR#,
- SBTJ3 = #sbtj3:VARCHAR#,
- SBTJ4 = #sbtj4:VARCHAR#,
- SBTJ5 = #sbtj5:VARCHAR#,
- SBTJ6 = #sbtj6:VARCHAR#,
- SBTJ7 = #sbtj7:VARCHAR#,
- SBTJJN = #sbtjjn:VARCHAR#,
- SBTJQN = #sbtjqn:VARCHAR#,
- DNZS = #dnzs:VARCHAR#,
- DNWS = #dnws:VARCHAR#,
- GTJZ = #gtjz:VARCHAR#,
- WZHZS = #wzhzs:VARCHAR#,
- YFFBT6 = #yffbt6:VARCHAR#,
- YFFBT7 = #yffbt7:VARCHAR#,
- BYTTS = #bytts:VARCHAR#,
- YFTTS = #yftts:VARCHAR#,
- BYTTSZB = #byttszb:VARCHAR#,
- QYYTTSZB = #qyyttszb:VARCHAR#,
- QEYTTSZB = #qeyttszb:VARCHAR#,
- QSYTTSZB = #qsyttszb:VARCHAR#,
- MZTTS = #mztts:VARCHAR#,
- GZTTS = #gztts:VARCHAR#,
- WEEK1 = #week1:INTEGER#,
- WEEK2 = #week2:INTEGER#,
- WEEK3 = #week3:INTEGER#,
- WEEK4 = #week4:INTEGER#,
- WEEK5 = #week5:INTEGER#,
- WEEK6 = #week6:INTEGER#,
- WEEK7 = #week7:INTEGER#,
- WEEKPRICE1 = #weekprice1:VARCHAR#,
- WEEKPRICE2 = #weekprice2:VARCHAR#,
- WEEKPRICE3 = #weekprice3:VARCHAR#,
- WEEKPRICE4 = #weekprice4:VARCHAR#,
- WEEKPRICE5 = #weekprice5:VARCHAR#,
- WEEKPRICE6 = #weekprice6:VARCHAR#,
- WEEKPRICE7 = #weekprice7:VARCHAR#
- where ID = #id:INTEGER#
- </update>
-
- <select id="select.count.all.by.mcidlist" parameterClass="java.lang.String" resultClass="com.huimv.dp.dataobject.DpSjlrsy">
- select
- sum(CLSJYXS) as CLSJYXS ,sum(CLSJBRZ) as CLSJBRZ ,sum(CLSJBYZ) as CLSJBYZ ,
- 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,
- 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,
- sum(TTSJBYTTS) as TTSJBYTTS , sum(TTSJFZ) as TTSJFZ , sum(TTSJQEYTTS) as TTSJQEYTTS , sum(TTSJQSYTTS) as TTSJQSYTTS , sum(TTSJQYYTTS) as TTSJQYYTTS , sum(TTSJZZ) as TTSJZZ,
- 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 ,
- sum(FMZZFBTFMCHL) as FMZZFBTFMCHL , sum(FMZZFBTJXS) as FMZZFBTJXS , sum(FMZZFBTJZS) as FMZZFBTJZS , sum(FMZZFBTMNYS) as FMZZFBTMNYS , sum(FMZZFBTRZS) as FMZZFBTRZS , sum(FMZZFBTSTS)as FMZZFBTSTS,
- 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,
- 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 ,
- sum(ydtts10) as ydtts10 ,sum(ydtts11) as ydtts11 ,sum(ydtts12) as ydtts12 ,
- sum(yffbt1) as yffbt1 ,sum(yffbt2) as yffbt2 ,sum(yffbt3) as yffbt3 ,sum(yffbt4) as yffbt4 ,sum(yffbt5) as yffbt5,
- 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,
- 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,
- sum(dnzs) as dnzs , sum(DNWS) as DNWS , sum(GTJZ) ,sum(WZHZS),
- 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,
- 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
-
- from dp_sjlr_sy where mcid in ($list$)
- </select>
-
- </sqlMap>
|