From 61b92e07ba35744f944b3bf9b41bb3badef2b577 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=AD=E5=87=AF=E5=87=AF?= Date: Thu, 26 Sep 2024 16:56:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=97=E9=93=BA=E7=AE=A1=E7=90=86-=E5=BA=97?= =?UTF-8?q?=E9=93=BA=E5=88=97=E8=A1=A8>=E4=B8=89=E6=96=B9=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=EF=BC=9A=E6=96=B0=E5=A2=9E=E6=94=AF=E4=BB=98=E5=AE=9D?= =?UTF-8?q?=E5=B0=8F=E7=A8=8B=E5=BA=8Fappid=E5=BD=95=E5=85=A5=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cashier/pojo/shop/TbMerchantThirdApply.java | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/eladmin-system/src/main/java/cn/ysk/cashier/pojo/shop/TbMerchantThirdApply.java b/eladmin-system/src/main/java/cn/ysk/cashier/pojo/shop/TbMerchantThirdApply.java index f1e2ccfe..56098345 100644 --- a/eladmin-system/src/main/java/cn/ysk/cashier/pojo/shop/TbMerchantThirdApply.java +++ b/eladmin-system/src/main/java/cn/ysk/cashier/pojo/shop/TbMerchantThirdApply.java @@ -15,11 +15,15 @@ */ package cn.ysk.cashier.pojo.shop; -import lombok.Data; import cn.hutool.core.bean.BeanUtil; -import io.swagger.annotations.ApiModelProperty; import cn.hutool.core.bean.copier.CopyOptions; -import javax.persistence.*; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Id; +import javax.persistence.Table; import java.io.Serializable; /** @@ -47,9 +51,13 @@ public class TbMerchantThirdApply implements Serializable { private String appId; @Column(name = "`small_appid`") - @ApiModelProperty(value = "小程序appid") + @ApiModelProperty(value = "微信小程序appid") private String smallAppid; + @Column(name = "`small_appid`") + @ApiModelProperty(value = "支付宝小程序appid") + private String alipaySmallAppid; + @Column(name = "`store_id`") @ApiModelProperty(value = "店铺id") private String storeId;