123456789101112131415161718192021222324252627282930313233 |
- package com.yihu.iot.model;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * GtClientDetails entity. @author MyEclipse Persistence Tools
- */
- @ApiModel(description = "")
- public class GcClientDetailsModel{
- // Fields
- @ApiModelProperty(value = "appId", required = false, access = "response")
- private String appId;
- @ApiModelProperty(value = "appSecret", required = false, access = "response")
- private String appSecret;
- public String getAppId() {
- return appId;
- }
- public void setAppId(String appId) {
- this.appId = appId;
- }
- public String getAppSecret() {
- return appSecret;
- }
- public void setAppSecret(String appSecret) {
- this.appSecret = appSecret;
- }
- }
|