You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
383 B
Java
16 lines
383 B
Java
package com.ibeetl.jlw.service;
|
|
|
|
import com.google.gson.Gson;
|
|
import me.chanjar.weixin.mp.api.WxMpMessageHandler;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
/**
|
|
* @author Binary Wang
|
|
*/
|
|
public abstract class AbstractHandler implements WxMpMessageHandler {
|
|
|
|
protected final Gson gson = new Gson();
|
|
protected Logger logger = LoggerFactory.getLogger(getClass());
|
|
|
|
} |