后台服务
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.

28 lines
659 B

  1. package com.iformall.mapper;
  2. import com.iformall.common.CommonMapper;
  3. import com.iformall.domain.po.sm.UserMouldVideo;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.List;
  6. public interface UserMouldVideoMapper extends CommonMapper<UserMouldVideo, Long> {
  7. List<UserMouldVideo> findList(UserMouldVideo record);
  8. int deleteById(@Param("id")Long id);
  9. /**
  10. * c端列表查询,尽量减少字段
  11. * @param record
  12. * @return
  13. */
  14. List<UserMouldVideo> findCList(UserMouldVideo record);
  15. UserMouldVideo findVideo(@Param("id")Long id);
  16. List<UserMouldVideo> getVideoIdNullList();
  17. List<UserMouldVideo> getVideoSizeNullList();
  18. }