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
383 B

package com.community.pocket.entity.vo.android;
public enum GarbageCateGory implements CustomMessage {
/**
* 1 (可回收垃圾)
* 2 (有害垃圾)
* 4 (湿垃圾)
* 8 (干垃圾)
* 16 (大件垃圾)
*/
type1,
type2,
type4,
type8,
type16;
@Override
public String toString() {
return "waste." + name();
}
}