后台服务
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

13 行
360 B

  1. package com.iformall.mapper;
  2. import com.iformall.common.CommonMapper;
  3. import com.iformall.domain.po.WxCUserTags;
  4. import com.iformall.domain.po.WxCVideoTable;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface WxCVideoMapper extends CommonMapper<WxCVideoTable, String> {
  7. WxCVideoTable findByUserName(@Param("username") String username);
  8. }