52 lines
1.1 KiB
Java
52 lines
1.1 KiB
Java
|
|
package com.ghy.common.enums;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 微信消息通知枚举
|
||
|
|
* @author clunt
|
||
|
|
*/
|
||
|
|
|
||
|
|
public enum WxMsgEnum {
|
||
|
|
|
||
|
|
/** 任务大厅订单通知 */
|
||
|
|
PUBLIC_ORDER("", ""),
|
||
|
|
/** 新订单通知 */
|
||
|
|
NEW_ORDER("",""),
|
||
|
|
/** 超时消息通知 */
|
||
|
|
OVER_TIME("","8I5BnJMfwj-Z7udhNm9Z-kdjdg4__MV5ug1x8KKsbc0"),
|
||
|
|
/** 今日单消息通知 */
|
||
|
|
TODAY_ORDER("", ""),
|
||
|
|
/** 明日单通知 */
|
||
|
|
TOMORROW_ORDER("", ""),
|
||
|
|
/** 不同意排单通知 */
|
||
|
|
NOT_AGREE_PLAIN("", ""),
|
||
|
|
/** 不同意完单通知 */
|
||
|
|
NOT_AGREE_FINISH("",""),
|
||
|
|
/** 子师傅拒绝接单/退单通知 */
|
||
|
|
DETAIL_REJECT("", "")
|
||
|
|
;
|
||
|
|
|
||
|
|
private String type;
|
||
|
|
private String tempCode;
|
||
|
|
|
||
|
|
WxMsgEnum(String type, String tempCode) {
|
||
|
|
this.type = type;
|
||
|
|
this.tempCode = tempCode;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getType() {
|
||
|
|
return type;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setType(String type) {
|
||
|
|
this.type = type;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getTempCode() {
|
||
|
|
return tempCode;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setTempCode(String tempCode) {
|
||
|
|
this.tempCode = tempCode;
|
||
|
|
}
|
||
|
|
}
|