Platform.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * <<
  3. * Davinci
  4. * ==
  5. * Copyright (C) 2016 - 2019 EDP
  6. * ==
  7. * Licensed under the Apache License, Version 2.0 (the "License");
  8. * you may not use this file except in compliance with the License.
  9. * You may obtain a copy of the License at
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. * >>
  17. *
  18. */
  19. package edp.davinci.model;
  20. import lombok.Data;
  21. @Data
  22. public class Platform {
  23. private Long id;
  24. /**
  25. * 平台名称
  26. */
  27. private String name;
  28. /**
  29. * 平台描述(接口前缀)
  30. */
  31. private String platform;
  32. /**
  33. * 平台代码,dv颁发的授权
  34. */
  35. private String code;
  36. /**
  37. * 校验代码,对应平台颁发授权码
  38. */
  39. private String checkCode;
  40. /**
  41. * 校验token, 对应平台授信token
  42. */
  43. private String checkSystemToken;
  44. /**
  45. * 授信检测url
  46. */
  47. private String checkUrl;
  48. /**
  49. * 备用字段
  50. */
  51. private String alternateField1;
  52. private String alternateField2;
  53. private String alternateField3;
  54. private String alternateField4;
  55. private String alternateField5;
  56. }