|
@@ -2,23 +2,23 @@
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
<mapper namespace="SapCheckMapper">
|
|
|
<insert id="saveCheckin">
|
|
|
- insert into sap_checkin(userId,groupName,checkinType,checkinDate,exceptionType,
|
|
|
+ insert into sap_checkin(userId,groupName,checkinType,checkinDate,checkinDay,exceptionType,
|
|
|
checkinTime,locationTitle,locationDetail,wifiName,wifiMac)
|
|
|
- values (#{userId},#{groupName},#{checkinType},#{checkinDate},#{exceptionType},
|
|
|
+ values (#{userId},#{groupName},#{checkinType},#{checkinDate},#{checkinDay},#{exceptionType},
|
|
|
#{checkinTime},#{locationTitle},#{locationDetail},#{wifiName},#{wifiMac})
|
|
|
</insert>
|
|
|
|
|
|
<insert id="saveCheckoff">
|
|
|
- insert into sap_checkoff(userId,groupName,checkinType,checkinDate,exceptionType,
|
|
|
+ insert into sap_checkoff(userId,groupName,checkinType,checkinDate,checkinDay,exceptionType,
|
|
|
checkinTime,locationTitle,locationDetail,wifiName,wifiMac)
|
|
|
- values (#{userId},#{groupName},#{checkinType},#{checkinDate},#{exceptionType},
|
|
|
+ values (#{userId},#{groupName},#{checkinType},#{checkinDate},#{checkinDay},#{exceptionType},
|
|
|
#{checkinTime},#{locationTitle},#{locationDetail},#{wifiName},#{wifiMac})
|
|
|
</insert>
|
|
|
|
|
|
<insert id="saveCheckout">
|
|
|
- insert into sap_checkout(userId,groupName,checkinType,checkinDate,exceptionType,
|
|
|
+ insert into sap_checkout(userId,groupName,checkinType,checkinDate,checkinDay,exceptionType,
|
|
|
checkinTime,locationTitle,locationDetail,wifiName,wifiMac)
|
|
|
- values (#{userId},#{groupName},#{checkinType},#{checkinDate},#{exceptionType},
|
|
|
+ values (#{userId},#{groupName},#{checkinType},#{checkinDate},#{checkinDay},#{exceptionType},
|
|
|
#{checkinTime},#{locationTitle},#{locationDetail},#{wifiName},#{wifiMac})
|
|
|
</insert>
|
|
|
</mapper>
|