Sign in

RF / xiangdianwms · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • xiangdianwms
  • ..
  • task
  • ActivityIsLandInfo.java
  • 增加小车状态的监控,小车移动和充电
    760b74ed
    游杰 authored
    2019-03-26 15:40:03 +0800  
    Browse Code »
ActivityIsLandInfo.java 463 Bytes
Edit Raw Blame History
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
package com.huaheng.robot.task;

public class ActivityIsLandInfo {
    private int id;
    private String name;

    public ActivityIsLandInfo(int id, String name) {
        this.id = id;
        this.name = name;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}