• This project
    • Loading...
  • Sign in

Fedex / iClear-api

Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • iClear-api
  • ..
  • response
  • TokenDataResult.java
  • tao.mo's avatar
    API代码提交 · 3394426b ...
    3394426b
    mt
    2021年8月4日13:39:17
    tao.mo authored 2021-08-04 13:39:30 +0800
TokenDataResult.java 206 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
package com.erry.iclear.dateInterface.api.response;

import lombok.AllArgsConstructor;
import lombok.Data;

@Data
@AllArgsConstructor
public class TokenDataResult {
    String expire_in;
    String token;
}