From fc0e5d2169a938e0591dffa286338c79656f084b Mon Sep 17 00:00:00 2001 From: x_z Date: Wed, 1 Feb 2023 10:52:34 +0800 Subject: [PATCH] =?UTF-8?q?1.=E5=8D=95=E6=8D=AE=E6=B5=81=E8=BD=AC=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E6=9F=A5=E8=AF=A2=E7=BB=93=E6=9E=9C=E7=B1=BB=E5=AE=8C?= =?UTF-8?q?=E5=96=84=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../res/basic/BasicBusTypePreResponse.java | 23 ++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/glxp/api/res/basic/BasicBusTypePreResponse.java b/src/main/java/com/glxp/api/res/basic/BasicBusTypePreResponse.java index 789de33a..8c2b79a4 100644 --- a/src/main/java/com/glxp/api/res/basic/BasicBusTypePreResponse.java +++ b/src/main/java/com/glxp/api/res/basic/BasicBusTypePreResponse.java @@ -1,11 +1,32 @@ package com.glxp.api.res.basic; +import com.glxp.api.entity.basic.BasicBusTypePreEntity; import lombok.Data; /** * 补单设置接口响应VO */ @Data -public class BasicBusTypePreResponse { +public class BasicBusTypePreResponse extends BasicBusTypePreEntity { + + /** + * 原单据类型名称 + */ + private String originName; + + /** + * 目标单据类型名称 + */ + private String targetName; + + /** + * 目标所在仓库名称 + */ + private String invName; + + /** + * 目标往来仓库名称 + */ + private String defaultInvName; }