记得上下班打卡 | git大法好,push需谨慎

Commit d34769b6 authored by 胡佳晨's avatar 胡佳晨

修改 入场须知

parent cf38ce8d
......@@ -884,13 +884,13 @@ public class DataImpl {
ResultSet relationData = pstmt.executeQuery();
while (relationData.next()) {
KylinCheckUserPerformances checkUserPerformances = new KylinCheckUserPerformances();
checkUserPerformances.setCheckUserId(resultData.getInt("merchant_id") + "");
checkUserPerformances.setPerformanceId(resultData.getInt("performance_id") + "");
checkUserPerformances.setCheckUserPerformanceId(resultData.getInt("id") + "");
checkUserPerformances.setCheckUserId(relationData.getInt("merchant_id") + "");
checkUserPerformances.setPerformanceId(relationData.getInt("performance_id") + "");
checkUserPerformances.setCheckUserPerformanceId(relationData.getInt("id") + "");
checkUserPerformances.setStatus(1);
checkUserPerformances.setCreatedAt(DateUtil.Formatter.yyyyMMddHHmmssS.parse(resultData.getTimestamp("created_at").toString()));
if (null != resultData.getTimestamp("updated_at")) {
checkUserPerformances.setUpdatedAt(DateUtil.Formatter.yyyyMMddHHmmssS.parse(resultData.getTimestamp("updated_at").toString()));
checkUserPerformances.setCreatedAt(DateUtil.Formatter.yyyyMMddHHmmssS.parse(relationData.getTimestamp("created_at").toString()));
if (null != relationData.getTimestamp("updated_at")) {
checkUserPerformances.setUpdatedAt(DateUtil.Formatter.yyyyMMddHHmmssS.parse(relationData.getTimestamp("updated_at").toString()));
}
checkUserPerformancesArrayList.add(checkUserPerformances);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment