后台服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 line
295 B

  1. package com.iformall.service;
  2. import com.iformall.common.ResultData;
  3. import com.iformall.domain.po.WxCVideoTable;
  4. import java.util.Map;
  5. public interface WxCVideoService {
  6. Map<String,Object> getById(Long id) throws Exception;
  7. WxCVideoTable selectOne(Long id, long resource_id);
  8. }