店铺管理-店铺列表>三方配置:新增支付宝小程序appid录入项

This commit is contained in:
谭凯凯
2024-09-26 16:56:36 +08:00
committed by Tankaikai
parent 0ed1e068ed
commit 61b92e07ba

View File

@@ -15,11 +15,15 @@
*/ */
package cn.ysk.cashier.pojo.shop; package cn.ysk.cashier.pojo.shop;
import lombok.Data;
import cn.hutool.core.bean.BeanUtil; import cn.hutool.core.bean.BeanUtil;
import io.swagger.annotations.ApiModelProperty;
import cn.hutool.core.bean.copier.CopyOptions; 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; import java.io.Serializable;
/** /**
@@ -47,9 +51,13 @@ public class TbMerchantThirdApply implements Serializable {
private String appId; private String appId;
@Column(name = "`small_appid`") @Column(name = "`small_appid`")
@ApiModelProperty(value = "小程序appid") @ApiModelProperty(value = "微信小程序appid")
private String smallAppid; private String smallAppid;
@Column(name = "`small_appid`")
@ApiModelProperty(value = "支付宝小程序appid")
private String alipaySmallAppid;
@Column(name = "`store_id`") @Column(name = "`store_id`")
@ApiModelProperty(value = "店铺id") @ApiModelProperty(value = "店铺id")
private String storeId; private String storeId;