From f6513ffa7e2efe2a4dc81626c7aab9cf643f8f41 Mon Sep 17 00:00:00 2001 From: zyx <zyx123456> Date: 星期四, 14 三月 2024 10:14:28 +0800 Subject: [PATCH] 1.增加牌号作为唯一物料条件 (当前牌号 批号 包号可以筛选出唯一物料) 2.增加移库接口 3.订单出库可替换物料 4.页面ui完善 --- src/main/java/com/zy/asrs/entity/LocOwner.java | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/zy/asrs/entity/LocOwner.java b/src/main/java/com/zy/asrs/entity/LocOwner.java index a1573a0..8eec555 100644 --- a/src/main/java/com/zy/asrs/entity/LocOwner.java +++ b/src/main/java/com/zy/asrs/entity/LocOwner.java @@ -1,5 +1,6 @@ package com.zy.asrs.entity; +import com.alibaba.excel.annotation.ExcelProperty; import com.baomidou.mybatisplus.annotations.TableId; import com.baomidou.mybatisplus.enums.IdType; @@ -19,8 +20,15 @@ private Long id; @ApiModelProperty(value= "") + @ExcelProperty(value = "瀹㈡埛鍚嶇О") private String owner; + @ExcelProperty(value = "瀹㈡埛鐢佃瘽") + private String phone; + + @ExcelProperty(value = "瀹㈡埛鍦板潃") + private String addr; + public LocOwner() {} public LocOwner(String owner) { -- Gitblit v1.9.1