|
@@ -11,14 +11,14 @@ import lombok.Getter;
|
|
|
* @since 2023/3/2
|
|
|
*/
|
|
|
@Getter
|
|
|
-public enum DeviceRecordsChangeType {
|
|
|
+public enum DeviceRecordsChangeTypeEnum {
|
|
|
CHANGE_PRICE("1","更改价格"),
|
|
|
BING_GOODS("2","绑定商品")
|
|
|
;
|
|
|
private String code;
|
|
|
private String msg;
|
|
|
|
|
|
- DeviceRecordsChangeType(String code, String msg) {
|
|
|
+ DeviceRecordsChangeTypeEnum(String code, String msg) {
|
|
|
this.code = code;
|
|
|
this.msg = msg;
|
|
|
}
|