MceContentService.java 396 B

1234567891011121314151617
  1. package com.usky.iot.service;
  2. import com.alibaba.fastjson.JSONObject;
  3. import com.usky.iot.domain.MceContent;
  4. import com.usky.common.mybatis.core.CrudService;
  5. /**
  6. * <p>
  7. * 消息内容表 服务类
  8. * </p>
  9. *
  10. * @author han
  11. * @since 2024-04-19
  12. */
  13. public interface MceContentService extends CrudService<MceContent> {
  14. void sendApp(JSONObject mceReceiveVO, String cids, Integer sendType);
  15. }