From 525cf3d9714352284b70c29f81fa73bff71cf683 Mon Sep 17 00:00:00 2001 From: zyx <zyx123456> Date: 星期五, 14 七月 2023 08:11:55 +0800 Subject: [PATCH] 完善AGV相关功能 --- src/main/java/com/zy/asrs/entity/Mat.java | 35 ++++++++++++++++++++++++++++------- 1 files changed, 28 insertions(+), 7 deletions(-) diff --git a/src/main/java/com/zy/asrs/entity/Mat.java b/src/main/java/com/zy/asrs/entity/Mat.java index 1ce8414..82ed41d 100644 --- a/src/main/java/com/zy/asrs/entity/Mat.java +++ b/src/main/java/com/zy/asrs/entity/Mat.java @@ -56,18 +56,18 @@ private Long tagId; /** - * 鍗曟嵁鍙� + * 鐗╂枡鍙� */ - @ApiModelProperty(value= "鍗曟嵁鍙�") - @ExcelProperty(value = "鍗曟嵁鍙�") + @ApiModelProperty(value= "鐗╂枡鍙�") + @ExcelProperty(value = "鐗╂枡鍙�") private String matnr; /** * 鐗╂枡鍙� */ - @ApiModelProperty(value= "鐗╂枡鍙�") - @ExcelProperty(value = "鐗╂枡鍙�") + @ApiModelProperty(value= "鐗╂枡鍚嶇О") + @ExcelProperty(value = "鐗╂枡鍚嶇О") private String maktx; /** @@ -306,9 +306,27 @@ @ExcelProperty(value = "澶囨敞") private String memo; + /** + * 搴撳瓨棰勮鏁伴噺涓婇檺 + */ + @TableField("store_max") + private Double storeMax; + + /** + * 搴撳瓨棰勮鏁伴噺涓嬮檺 + */ + @TableField("store_min") + private Double storeMin; + + /** + * 搴撻緞棰勮涓婇檺 + */ + @TableField("store_max_date") + private Integer storeMaxDate; + public Mat() {} - public Mat(String uuid,Long tagId,String matnr,String maktx,String name,String specs,String model,String color,String brand,String unit,Double price,String sku,Double units,String barcode,String origin,String manu,String manuDate,String itemNum,Double safeQty,Double weight,Double length,Double volume,String threeCode,String supp,String suppCode,Integer beBatch,String deadTime,Integer deadWarn,Integer source,Integer inspect,Integer danger,Integer status,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) { + public Mat(String uuid, Long tagId, String matnr, String maktx, String name, String specs, String model, String color, String brand, String unit, Double price, String sku, Double units, String barcode, String origin, String manu, String manuDate, String itemNum, Double safeQty, Double weight, Double length, Double volume, String threeCode, String supp, String suppCode, Integer beBatch, String deadTime, Integer deadWarn, Integer source, Integer inspect, Integer danger, Integer status, Long createBy, Date createTime, Long updateBy, Date updateTime, String memo, Double storeMax, Double storeMin, Integer storeMaxDate) { this.uuid = uuid; this.tagId = tagId; this.matnr = matnr; @@ -346,12 +364,15 @@ this.updateBy = updateBy; this.updateTime = updateTime; this.memo = memo; + this.storeMax = storeMax; + this.storeMin = storeMin; + this.storeMaxDate = storeMaxDate; } // Mat mat = new Mat( // null, // 缂栧彿 // null, // 鎵�灞炲綊绫� -// null, // 鍗曟嵁鍙� +// null, // 鐗╂枡鍙� // null, // 鐗╂枡鍙� // null, // 绉诲姩绫诲瀷 // null, // 瑙勬牸 -- Gitblit v1.9.1