Sign in

wms / wms_xianyangming · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wms_xianyangming
  • ..
  • invenory
  • TaskIds.java
  • 移植PDA接口过来
    99963e50
    游杰 authored
    2020-02-25 17:36:02 +0800  
    Browse Code »
TaskIds.java 419 Bytes
Edit 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 26
package com.huaheng.mobile.invenory;

/**
 *
 * @author Enzo Cotter
 * @date 2019/12/15
 */
public class TaskIds {

    private int taskId;

    public int getTaskId() {
        return taskId;
    }

    public void setTaskId(int taskId) {
        this.taskId = taskId;
    }

    @Override
    public String toString() {
        return "TaskDetail{" +
                "taskId=" + taskId +
                '}';
    }
}