1234567891011121314151617 |
- package com.usky.iot.service;
- import com.alibaba.fastjson.JSONObject;
- import com.usky.iot.domain.MceContent;
- import com.usky.common.mybatis.core.CrudService;
- /**
- * <p>
- * 消息内容表 服务类
- * </p>
- *
- * @author han
- * @since 2024-04-19
- */
- public interface MceContentService extends CrudService<MceContent> {
- void sendApp(JSONObject mceReceiveVO, String cids, Integer sendType);
- }
|