jiangping
2023-10-18 d00f345e88363d1d2d75350f27ee4b6348d30219
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.doumee.core.wx;
 
import com.doumee.biz.system.SystemDictDataBiz;
import com.doumee.dao.system.model.SystemUser;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2022/12/7 17:27
 */
@Service
@Slf4j
public class SendWxMessage {
 
    private static String programUrl = "packagesMine/meetingDetails/meetingDetails?id=";
 
    @Autowired
    private SystemDictDataBiz systemDictDataBiz;
 
}