@ -26,7 +26,7 @@ public class SapAsn extends SapBase {
@ApiParam(value = "ASN item")
@AnnoOutputColumn
private Double zrnum;
private Integer zrnum;
@ApiParam(value = "物料编码")
@ -23,7 +23,7 @@ public class SapBase {
private String actusr = "导入";
@ApiParam(value = "SID", example = "-1")
private String sid = new Random().nextInt() + "";
private String sid = ( Math.abs(new Random().nextInt())+ "");
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@ApiParam(value = "接收数据日期", example = "-1")
@ -64,8 +64,8 @@ public class SapMiscr extends SapBase{
@AnnoOutputColumn(hidden = true)
private String sgtxt;
public Double getZeileVal() {
return zeile== null ? 0D : this.zeile.doubleValue();
public Integer getZeileVal() {
return zeile== null ? 0 : this.zeile.intValue();
}
public Double getErfmgVal() {