From 1782605c12fd3fd71aa1a59eb89a15b00041fb10 Mon Sep 17 00:00:00 2001 From: SongZhang <2064194730@qq.com> Date: Tue, 29 Oct 2024 10:16:49 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=9C=B8=E7=8E=8B=E9=A4=90=E4=BC=98?= =?UTF-8?q?=E6=83=A0=E5=88=B8=E4=BD=BF=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cashierservice/entity/vo/ActivateInInfoVO.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/main/java/com/chaozhanggui/system/cashierservice/entity/vo/ActivateInInfoVO.java diff --git a/src/main/java/com/chaozhanggui/system/cashierservice/entity/vo/ActivateInInfoVO.java b/src/main/java/com/chaozhanggui/system/cashierservice/entity/vo/ActivateInInfoVO.java new file mode 100644 index 0000000..46cd10d --- /dev/null +++ b/src/main/java/com/chaozhanggui/system/cashierservice/entity/vo/ActivateInInfoVO.java @@ -0,0 +1,14 @@ +package com.chaozhanggui.system.cashierservice.entity.vo; + +import lombok.Builder; +import lombok.Data; +import lombok.experimental.Accessors; + +@Data +@Accessors(chain = true) +public class ActivateInInfoVO { + private Integer id; + private Integer couponId; + private Integer num; +} +