All Downloads are FREE. Search and download functionalities are using the official Maven repository.

k.e.book.common.enums.UserCollectStatus Maven / Gradle / Ivy

package k.e.book.common.enums;

/**
 * 用户持有状态(cc_user_collect,status)
 * 

* 状态:0=已取消,1=确认中,2=已确认,3=挂售中,4=已售出,5=已撤回,6=销毁中, *

* 7=已销毁,8=锁定中,10=取消转增,11=转增中,12=待接收,13=已转增 */ public enum UserCollectStatus { Canceled("0"),//已取消 Confirming("1"),//确认中 Confirmed("2"),//已确认 OnSale("3"), Sold("4"), LOCKING("8"); private final String name; UserCollectStatus(String n) { this.name = n; } public String getName() { return this.name; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy