后台服务
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

15 rader
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. }