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

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

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

import com.firefly.kotlin.ext.annotation.NoArg

/**
 * @author Pengtao Qiu
 */
@NoArg
data class Response(
    var status: Int,
    var message: String,
    var data: T
                      )

enum class ResponseStatus(
    val value: Int,
    val description: String
                         ) {
    OK(1, "ok"),
    ARGUMENT_ERROR(2, "argument error"),
    SERVER_ERROR(3, "server error")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy