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

me.chanjar.weixin.cp.bean.oa.WxCpApproverAttr 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;

/**
 * 审批方式
 *
 * @author element
 */
public enum WxCpApproverAttr {
  /**
   * 或签
   */
  @SerializedName("1")
  ONE_SIGN(1),
  /**
   * 会签
   */
  @SerializedName("2")
  ALL_SIGN(2);

  private final Integer attr;

  WxCpApproverAttr(Integer attr) {
    this.attr = attr;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy