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.
23 lines
401 B
23 lines
401 B
|
2 months ago
|
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;
|
||
|
|
}
|
||
|
|
}
|