| 123456789101112131415161718192021222324252627282930313233343536 |
- package com.template.config;
- import lombok.Data;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.context.annotation.Configuration;
- /**
- * 墨轩湖校区停车收费系统配置
- * @author codingliang
- * @date 2025-06-17
- */
- @Data
- @Configuration
- @ConfigurationProperties(prefix = "parking.mxh")
- public class ParkingFeeSysOfMxhConfig {
- /**
- * 密钥
- */
- private String key;
- /**
- * 停车场ID
- */
- private String parkId;
- /**
- * 调用系统名称
- */
- private String serviceName;
- /**
- * 服务地址
- */
- private String url;
- }
|