|
@@ -22,6 +22,8 @@ import lombok.RequiredArgsConstructor;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.apache.commons.lang3.time.DateUtils;
|
|
|
+import org.slf4j.Logger;
|
|
|
+import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -40,6 +42,8 @@ import java.util.stream.Collectors;
|
|
|
@RequiredArgsConstructor
|
|
|
public class CommonLogic {
|
|
|
|
|
|
+ private static final Logger operationLogger = LoggerFactory.getLogger("OPERATION_LOGGER");
|
|
|
+
|
|
|
@Value("${spring.profiles.active}")
|
|
|
private String active;
|
|
|
private final WechatLogic wechatLogic;
|