| | |
| | | <result column="io_time" property="ioTime" /> |
| | | <result column="matnr" property="matnr" /> |
| | | <result column="maktx" property="maktx" /> |
| | | <result column="lgnum" property="lgnum" /> |
| | | <result column="type" property="type" /> |
| | | <result column="specs" property="specs" /> |
| | | <result column="size" property="size" /> |
| | | <result column="color" property="color" /> |
| | | <result column="supplier" property="supplier" /> |
| | | <result column="warehouse" property="warehouse" /> |
| | | <result column="weight" property="weight" /> |
| | | <result column="bill_no" property="billNo" /> |
| | | <result column="seq_no" property="seqNo" /> |
| | | <result column="brand" property="brand" /> |
| | | <result column="anfme" property="anfme" /> |
| | | <result column="altme" property="altme" /> |
| | | <result column="unit" property="unit" /> |
| | | <result column="zpallet" property="zpallet" /> |
| | | <result column="bname" property="bname" /> |
| | | <result column="memo" property="memo" /> |
| | |
| | | <result column="appe_time" property="appeTime" /> |
| | | </resultMap> |
| | | |
| | | <select id="findByWorkNo" resultMap="BaseResultMap"> |
| | | select "wrk_no", "matnr", "maktx", "anfme" from "SOURCE"."asr_wrk_detl" where 1=1 and "wrk_no" = #{workNo} |
| | | </select> |
| | | |
| | | <update id="updateIoTime"> |
| | | update "SOURCE"."asr_wrk_detl" |
| | | set "io_time" = #{ioTime} |
| | | where 1=1 |
| | | and "wrk_no" = #{workNo} |
| | | </update> |
| | | |
| | | </mapper> |