MassageService.java 678 Bytes
package com.pipihelper.project.feishu.service.massage;

import com.pipihelper.project.feishu.service.FeiShuApiService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

/**
 * @Description: TODO
 * @author: charles
 * @date: 2022年10月15日 17:21
 */
@Service
@Transactional
@Slf4j
public class MassageService {
    @Autowired
    private MassageMsgCardSerivce massageMsgCardSerivce;

    @Autowired
    private FeiShuApiService feiShuApiService;



    public void sendMassageMsgCardToPiPiChat(List<>){

    }



}