• This project
    • Loading...
  • Sign in

begete01 / town2 · Files

Go to a project

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • town2
  • ..
  • gms
  • GmsData.java
  • 标题:初始化工程
    d46af74b
    by pengchong.xie
    2019-07-13 13:20:46 +0800  
    Browse Files
GmsData.java 395 Bytes
Raw Blame History Permalink
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
package com.lotus.town.service.gms;

import java.io.Serializable;

class GmsData implements Serializable {

    private int m;
    private int action;

    public int getM() {
        return m;
    }

    public void setM(int m) {
        this.m = m;
    }

    public int getAction() {
        return action;
    }

    public void setAction(int action) {
        this.action = action;
    }
}