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

me.chanjar.weixin.cp.bean.oa.WxCpUserVacationQuota Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package me.chanjar.weixin.cp.bean.oa;

import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.Getter;
import lombok.Setter;
import me.chanjar.weixin.cp.bean.WxCpBaseResp;
import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder;

import java.io.Serializable;
import java.util.List;

/**
 * 成员假期余额信息.
 *
 * @author Wang_Wong
 */
@Data
public class WxCpUserVacationQuota extends WxCpBaseResp implements Serializable {
  private static final long serialVersionUID = 7387181805254287157L;

  @SerializedName("lists")
  private List lists;

  /**
   * The type Vacation quota.
   */
  @Getter
  @Setter
  public static class VacationQuota implements Serializable {
    private static final long serialVersionUID = -5696099236344075582L;

    @SerializedName("id")
    private Integer id;

    @SerializedName("assignduration")
    private Integer assignDuration;

    @SerializedName("usedduration")
    private Integer usedDuration;

    @SerializedName("leftduration")
    private Integer leftDuration;

    @SerializedName("vacationname")
    private String vacationName;

  }

  /**
   * From json wx cp user vacation quota.
   *
   * @param json the json
   * @return the wx cp user vacation quota
   */
  public static WxCpUserVacationQuota fromJson(String json) {
    return WxCpGsonBuilder.create().fromJson(json, WxCpUserVacationQuota.class);
  }

  public String toJson() {
    return WxCpGsonBuilder.create().toJson(this);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy