This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-ntc/src/main/java/com/nis/domain/configuration/AppIdCfg.java

78 lines
1.3 KiB
Java
Raw Normal View History

2018-02-07 14:51:11 +08:00
/**
*@Title: AppIdConfig.java
*@Package com.nis.domain.restful
*@Description TODO
*@author dell
*@date 2018年2月6日 上午11:24:28
*@version 版本号
*/
package com.nis.domain.configuration;
/**
* @ClassName: AppIdConfig.java
* @Description: TODO
* @author (dell)
* @date 2018年2月6日 上午11:24:28
* @version V1.0
*/
public class AppIdCfg extends BaseCfg<AppIdCfg> {
2018-02-07 14:51:11 +08:00
/**
* @Fields serialVersionUID:TODO用一句话描述这个变量表示什么
*
* @since 1.0.0
*/
private static final long serialVersionUID = -5385478577426593882L;
/**
* 应用名称
*/
private String appName;
/**
* 应用协议id
*/
private String appId;
/**
* appName
* @return appName
*/
public String getAppName() {
return appName;
}
/**
* @param appName the appName to set
*/
public void setAppName(String appName) {
this.appName = appName;
}
/**
* appId
* @return appId
*/
public String getAppId() {
return appId;
}
/**
* @param appId the appId to set
*/
public void setAppId(String appId) {
this.appId = appId;
}
/* (non-Javadoc)
* @see com.nis.domain.configuration.BaseCfg#initDefaultValue()
*/
@Override
public void initDefaultValue() {
// TODO Auto-generated method stub
super.initDefaultValue();
}
2018-02-07 14:51:11 +08:00
}