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

com.firefly.example.kotlin.coffee.store.vo.OrderVO.kt Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.firefly.example.kotlin.coffee.store.vo

/**
 * @author Pengtao Qiu
 */
enum class OrderStatus(
    val value: Int,
    val description: String
                      ) {
    UNPAID(1, "unpaid"),
    PURCHASED(2, "purchased"),
    SHIPPED(3, "shipped"),
    FINISHED(4, "finished"),
    CANCELED(5, "canceled"),
    REFUND(6, "refund")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy