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

me.chanjar.weixin.channel.enums.ComplaintStatus Maven / Gradle / Ivy

There is a newer version: 4.7.1.B
Show newest version
package me.chanjar.weixin.channel.enums;

import com.fasterxml.jackson.annotation.JsonFormat;

/**
 * 纠纷单状态
 *
 * @author Zeyes
 */
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum ComplaintStatus {

  ;

  private final int key;
  private final String value;

  ComplaintStatus(int key, String value) {
    this.key = key;
    this.value = value;
  }

  public int getKey() {
    return key;
  }

  public String getValue() {
    return value;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy