All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.riversoft.weixin.qy.contact.job.JobResult Maven / Gradle / Ivy

There is a newer version: 0.9.8
Show newest version
package com.riversoft.weixin.qy.contact.job;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;
import java.util.Map;

/**
 * Created by exizhai on 10/7/2015.
 */
public class JobResult {

    private int status;
    private JobType type;
    private int total;
    private int percentage;
    @JsonProperty("remaintime")
    private int remainTime;
    private List> result;

    public int getStatus() {
        return status;
    }

    public void setStatus(int status) {
        this.status = status;
    }

    public JobType getType() {
        return type;
    }

    public void setType(JobType type) {
        this.type = type;
    }

    public int getTotal() {
        return total;
    }

    public void setTotal(int total) {
        this.total = total;
    }

    public int getPercentage() {
        return percentage;
    }

    public void setPercentage(int percentage) {
        this.percentage = percentage;
    }

    public int getRemainTime() {
        return remainTime;
    }

    public void setRemainTime(int remainTime) {
        this.remainTime = remainTime;
    }

    public List> getResult() {
        return result;
    }

    public void setResult(List> result) {
        this.result = result;
    }

    /**
     * Created by exizhai on 10/7/2015.
     */
    public enum JobType {

        sync_user, replace_user, invite_user, replace_party

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy