From 8764ded6bcb37fd03806855e15cd0b6da98695e9 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期五, 02 四月 2021 09:38:05 +0800 Subject: [PATCH] # --- src/main/java/zy/cloud/wms/manager/entity/CustOrder.java | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/zy/cloud/wms/manager/entity/CustOrder.java b/src/main/java/zy/cloud/wms/manager/entity/CustOrder.java index 6777442..c805435 100644 --- a/src/main/java/zy/cloud/wms/manager/entity/CustOrder.java +++ b/src/main/java/zy/cloud/wms/manager/entity/CustOrder.java @@ -46,7 +46,7 @@ */ @ApiModelProperty(value= "鍗曟嵁鑷ID") @TableField("vch_code") - private Double vchcode; + private Integer vchcode; /** * 鍟嗗搧缂栧彿 @@ -78,7 +78,7 @@ */ @ApiModelProperty(value= "鍟嗗搧鍗曚环") @TableField("row_no") - private Double rowNo; + private Integer rowNo; /** * 鍟嗗搧澶囨敞 @@ -114,7 +114,7 @@ public CustOrder() {} - public CustOrder(String number,String billDate,String bTypeId,String eTypeId,Double vchcode,String userCode,Double qty,Double total,Double price, Double rowNo, String comment,Integer status,Date createTime,Date updateTime,String memo) { + public CustOrder(String number,String billDate,String bTypeId,String eTypeId,Integer vchcode,String userCode,Double qty,Double total,Double price, Integer rowNo, String comment,Integer status,Date createTime,Date updateTime,String memo) { this.number = number; this.billDate = billDate; this.bTypeId = bTypeId; @@ -211,11 +211,11 @@ this.price = price; } - public Double getRowNo() { + public Integer getRowNo() { return rowNo; } - public void setRowNo(Double rowNo) { + public void setRowNo(Integer rowNo) { this.rowNo = rowNo; } @@ -291,11 +291,11 @@ this.memo = memo; } - public Double getVchcode() { + public Integer getVchcode() { return vchcode; } - public void setVchcode(Double vchcode) { + public void setVchcode(Integer vchcode) { this.vchcode = vchcode; } } -- Gitblit v1.9.1