Skip to content

  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in / Register
M
mobvista-dmp
  • Project
    • Overview
    • Details
    • Activity
    • Cycle Analytics
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Charts
  • Issues 0
    • Issues 0
    • List
    • Board
    • Labels
    • Milestones
  • Merge Requests 0
    • Merge Requests 0
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
    • Charts
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Collapse sidebar
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • 王金锋
  • mobvista-dmp
  • Repository

Switch branch/tag
  • mobvista-dmp
  • ..
  • entity
  • Tuple.java
Find file
BlameHistoryPermalink
  • WangJinfeng's avatar
    add rtdmp into dmp project · 730e68c1
    WangJinfeng authored 3 years ago
    730e68c1
Tuple.java 492 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
package mobvista.dmp.datasource.rtdmp.entity;

public class Tuple {

    private Boolean flag;

    private Long utime;

    public Boolean getFlag() {
        return flag;
    }

    public void setFlag(Boolean flag) {
        this.flag = flag;
    }

    public Long getUtime() {
        return utime;
    }

    public void setUtime(Long utime) {
        this.utime = utime;
    }

    public Tuple(Boolean flag, Long utime) {
        this.flag = flag;
        this.utime = utime;
    }
}
×

Replace Tuple.java

Attach a file by drag & drop or click to upload


Cancel
A new branch will be created in your fork and a new merge request will be started.