From 48589a10cb5932c78022171100c193fd8b8c5f60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=95=8F?= <962239776@qq.com> Date: Tue, 25 Jun 2019 19:27:11 +0800 Subject: [PATCH] =?UTF-8?q?=E9=BB=98=E8=AE=A4=E5=AD=97=E6=AE=B5=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/cn/estsh/i3plus/pojo/wms/bean/SapBase.java | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/SapBase.java b/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/SapBase.java index 7d7156b..66fd04c 100644 --- a/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/SapBase.java +++ b/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/bean/SapBase.java @@ -34,7 +34,7 @@ public class SapBase { private String rechms; @ApiParam(value = "同步标志", example = "-1") - private String synflg = "Y"; + private String synflg = "N"; @ApiParam(value = "同步日期", example = "-1") private String synymd; @@ -43,7 +43,7 @@ public class SapBase { private String synhms; @ApiParam(value = "处理标志", example = "-1") - private String actflg = "Y"; + private String actflg = "N"; @ApiParam(value = "处理日期", example = "-1") private String actymd; @@ -52,7 +52,7 @@ public class SapBase { private String acthms ="00:00:00"; @ApiParam(value = "状态标志", example = "-1") - private String staflg = "Y"; + private String staflg = "N"; @ApiParam(value = "顺序号", example = "-1") private Integer seq = 1; @@ -62,11 +62,13 @@ public class SapBase { public String getSynymdTime() { SimpleDateFormat format = new SimpleDateFormat("YYYY-MM-DD"); - return format.format(new Date()); + //format.format(new Date()) + return ""; } public String getSynhmsTime() { SimpleDateFormat format = new SimpleDateFormat("HH:mm:ss"); - return format.format(new Date()); + //format.format(new Date()) + return ""; } }