![JAR search and dependency download from the Maven repository](/logo.png)
me.chanjar.weixin.channel.enums.ComplaintStatus Maven / Gradle / Ivy
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