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

com.zengtengpeng.common.bean.ResponseCode Maven / Gradle / Ivy

There is a newer version: 2.1.6
Show newest version
package com.zengtengpeng.common.bean;

public enum ResponseCode {
	SUCCESS("0","成功"),
	FAIL("1","失败"),
	;

    private String code;
	private String desc;
	private ResponseCode(String code, String desc){
		this.code=code;
		this.desc=desc;
	}

	public String code(){
		return this.code;
	}

	public String desc(){
		return this.desc;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy