GcClientDetailsModel.java 780 B

123456789101112131415161718192021222324252627282930313233
  1. package com.yihu.iot.model;
  2. import io.swagger.annotations.ApiModel;
  3. import io.swagger.annotations.ApiModelProperty;
  4. /**
  5. * GtClientDetails entity. @author MyEclipse Persistence Tools
  6. */
  7. @ApiModel(description = "")
  8. public class GcClientDetailsModel{
  9. // Fields
  10. @ApiModelProperty(value = "appId", required = false, access = "response")
  11. private String appId;
  12. @ApiModelProperty(value = "appSecret", required = false, access = "response")
  13. private String appSecret;
  14. public String getAppId() {
  15. return appId;
  16. }
  17. public void setAppId(String appId) {
  18. this.appId = appId;
  19. }
  20. public String getAppSecret() {
  21. return appSecret;
  22. }
  23. public void setAppSecret(String appSecret) {
  24. this.appSecret = appSecret;
  25. }
  26. }