You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
XML
38 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
|
|
|
|
<mapper namespace="com.glxp.api.admin.dao.info.SyncUploadDataSetDao">
|
|
|
|
|
|
<select id="selectSet"
|
|
resultType="com.glxp.api.admin.entity.info.SyncUploadDataSetEntity">
|
|
SELECT *
|
|
FROM thr_order_upload limit 1
|
|
</select>
|
|
|
|
|
|
<insert id="insert" parameterType="com.glxp.api.admin.entity.info.SyncUploadDataSetEntity">
|
|
replace
|
|
INTO thr_order_upload(id,autoUpload, orderSyncTime,orderUnCheck,orderUnReceive,
|
|
orderScanFinish, checkUdims, checkPdaEd, checkPdaUn, checkPc,
|
|
checkWebNew, checkChange, checkSp,checkBalacne)
|
|
values (
|
|
#{id},
|
|
#{autoUpload},
|
|
#{orderSyncTime},
|
|
#{orderUnCheck},
|
|
#{orderUnReceive},
|
|
#{orderScanFinish},
|
|
#{checkUdims},
|
|
#{checkPdaEd},
|
|
#{checkPdaUn},
|
|
#{checkPc},
|
|
#{checkWebNew},
|
|
#{checkChange},
|
|
#{checkSp},
|
|
#{checkBalacne}
|
|
)
|
|
</insert>
|
|
|
|
|
|
</mapper> |