com.sinszm.sofa.SzmLicenseProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of szm-sofa-boot-starter Show documentation
Show all versions of szm-sofa-boot-starter Show documentation
高可用服务框架,公共依赖库 Copyright © 2021 智慧程序猿(sinsz.com) All rights reserved.
The newest version!
package com.sinszm.sofa;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* 许可授权属性
*
* @author sinszm
* @date 2022/07/14
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
@ConfigurationProperties(prefix = "license")
public class SzmLicenseProperties {
/**
* 厂商英文名称标识
*/
private String name;
/**
* 授权文件名称标识
*/
private String tag;
/**
* 授权文件版本标识
*/
private String eTag;
/**
* 密码
*/
private String password;
}