47 lines
938 B
Java
47 lines
938 B
Java
package com.xinelu.common.config;
|
|
|
|
import lombok.Data;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
/**
|
|
* @Description 小程序页面配置类
|
|
* @Author 纪寒
|
|
* @Date 2023-02-27 17:26:51
|
|
* @Version 1.0
|
|
*/
|
|
@Data
|
|
@Component
|
|
@ConfigurationProperties(prefix = "applet-page-config")
|
|
public class AppletPageConfig {
|
|
/**
|
|
* 首页路径
|
|
*/
|
|
private String pageUrl;
|
|
|
|
/**
|
|
* 个人中心-优惠券页面跳转路径
|
|
*/
|
|
private String couponPageUrl;
|
|
|
|
/**
|
|
* 商品订单页面跳转路径
|
|
*/
|
|
private String goodsOrderPageUrl;
|
|
|
|
/**
|
|
* 预约订单页面跳转路径
|
|
*/
|
|
private String appointOrderPageUrl;
|
|
|
|
/**
|
|
* 积分跳转路径
|
|
*/
|
|
private String integralPageUrl;
|
|
|
|
/**
|
|
* 护理结构详情页面跳转路径
|
|
*/
|
|
private String nurseStationDetailsPageUrl;
|
|
}
|