默认字段修改

yun-zuoyi
刘敏 6 years ago
parent 945ef82867
commit 48589a10cb

@ -34,7 +34,7 @@ public class SapBase {
private String rechms; private String rechms;
@ApiParam(value = "同步标志", example = "-1") @ApiParam(value = "同步标志", example = "-1")
private String synflg = "Y"; private String synflg = "N";
@ApiParam(value = "同步日期", example = "-1") @ApiParam(value = "同步日期", example = "-1")
private String synymd; private String synymd;
@ -43,7 +43,7 @@ public class SapBase {
private String synhms; private String synhms;
@ApiParam(value = "处理标志", example = "-1") @ApiParam(value = "处理标志", example = "-1")
private String actflg = "Y"; private String actflg = "N";
@ApiParam(value = "处理日期", example = "-1") @ApiParam(value = "处理日期", example = "-1")
private String actymd; private String actymd;
@ -52,7 +52,7 @@ public class SapBase {
private String acthms ="00:00:00"; private String acthms ="00:00:00";
@ApiParam(value = "状态标志", example = "-1") @ApiParam(value = "状态标志", example = "-1")
private String staflg = "Y"; private String staflg = "N";
@ApiParam(value = "顺序号", example = "-1") @ApiParam(value = "顺序号", example = "-1")
private Integer seq = 1; private Integer seq = 1;
@ -62,11 +62,13 @@ public class SapBase {
public String getSynymdTime() { public String getSynymdTime() {
SimpleDateFormat format = new SimpleDateFormat("YYYY-MM-DD"); SimpleDateFormat format = new SimpleDateFormat("YYYY-MM-DD");
return format.format(new Date()); //format.format(new Date())
return "";
} }
public String getSynhmsTime() { public String getSynhmsTime() {
SimpleDateFormat format = new SimpleDateFormat("HH:mm:ss"); SimpleDateFormat format = new SimpleDateFormat("HH:mm:ss");
return format.format(new Date()); //format.format(new Date())
return "";
} }
} }

Loading…
Cancel
Save