From 68effb893f714f7e536ae238abf25405bc53ff56 Mon Sep 17 00:00:00 2001 From: Guoqs <123@jsowell.com> Date: Mon, 12 Aug 2024 16:18:18 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E6=8E=A5=E6=B5=99=E6=B1=9F=E5=B9=B3?= =?UTF-8?q?=E5=8F=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pile/service/impl/ThirdPartyStationRelationServiceImpl.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ThirdPartyStationRelationServiceImpl.java b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ThirdPartyStationRelationServiceImpl.java index bfae2b065..d42791c2e 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ThirdPartyStationRelationServiceImpl.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/ThirdPartyStationRelationServiceImpl.java @@ -6,6 +6,7 @@ import com.jsowell.common.enums.DelFlagEnum; import com.jsowell.common.enums.thirdparty.ThirdPlatformTypeEnum; import com.jsowell.common.enums.ykc.ReturnCodeEnum; import com.jsowell.common.exception.BusinessException; +import com.jsowell.common.util.DateUtils; import com.jsowell.common.util.SecurityUtils; import com.jsowell.common.util.StringUtils; import com.jsowell.pile.domain.ThirdPartyStationRelation; @@ -163,6 +164,7 @@ public class ThirdPartyStationRelationServiceImpl implements ThirdPartyStationRe .thirdPartyType(thirdPartyType) .delFlag(DelFlagEnum.NORMAL.getValue()) .build(); + build.setCreateTime(DateUtils.getNowDate()); list.add(build); } return thirdPartyStationRelationMapper.batchInsert(list);