Blame view

service-job/src/main/java/com/java110/job/adapt/statistics/CheckStatisticsInfoAdapt.java 1.85 KB
88e030b7   王彪总   init project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  package com.java110.job.adapt.statistics;
  
  import com.alibaba.fastjson.JSONObject;
  import com.java110.dto.system.Business;
  import com.java110.intf.community.ICommunityInnerServiceSMO;
  import com.java110.intf.store.ISmallWeChatInnerServiceSMO;
  import com.java110.intf.store.ISmallWechatAttrInnerServiceSMO;
  import com.java110.intf.user.IOwnerAppUserInnerServiceSMO;
  import com.java110.intf.user.IOwnerInnerServiceSMO;
  import com.java110.job.adapt.DatabusAdaptImpl;
  import org.slf4j.Logger;
  import com.java110.core.log.LoggerFactory;
  import org.springframework.beans.factory.annotation.Autowired;
  import org.springframework.stereotype.Component;
  import org.springframework.web.client.RestTemplate;
  
  import java.util.List;
  
  /**
   * 数据统计适配器
   *
   * @author fqz
   * @date 2020-12-11  18:54
   */
  @Component(value = "checkStatisticsInfoAdapt")
  public class CheckStatisticsInfoAdapt extends DatabusAdaptImpl {
  
      private static Logger logger = LoggerFactory.getLogger(CheckStatisticsInfoAdapt.class);
  
      @Autowired
      private ICommunityInnerServiceSMO communityInnerServiceSMO;
  
      @Autowired
      private ISmallWeChatInnerServiceSMO smallWeChatInnerServiceSMOImpl;
  
      @Autowired
      private ISmallWechatAttrInnerServiceSMO smallWechatAttrInnerServiceSMOImpl;
  
      @Autowired
      private RestTemplate outRestTemplate;
  
  
      @Autowired
      private IOwnerInnerServiceSMO ownerInnerServiceSMO;
  
      @Autowired
      private IOwnerAppUserInnerServiceSMO ownerAppUserInnerServiceSMO;
  
      //模板信息推送地址
      private static String sendMsgUrl = "https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=";
  
      public final static String ALI_SMS_DOMAIN = "ALI_SMS";
  
      @Override
      public void execute(Business business, List<Business> businesses) {
          
      }
  
      private void doSendPayFeeDetail(Business business, JSONObject businessPayFeeDetail) {
  
      }
  }