数据同步服务-语音
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
401 B

package com.threecloud.dataserviceyy.enums;
public enum SyncStatus {
ERR("0", "失败"),
SUC("1", "成功");
private final String code;
private final String name;
SyncStatus(String code, String name) {
this.code = code;
this.name = name;
}
public String getCode() {
return code;
}
public String getName() {
return name;
}
}