com.gracerun.summermq.constant.MessageStatusConstant Maven / Gradle / Ivy
package com.gracerun.summermq.constant;
/**
* 消息状态
* @author Tom
* @date 12/26/21
* @version 1.0.0
*/
public interface MessageStatusConstant {
/**
* init
*/
String INIT = "INIT";
/**
* success
*/
String SUCCESS = "SUCCESS";
/**
* fail
*/
String FAIL = "FAIL";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy