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.
|
- package com.iformall.mapper;
-
- import com.iformall.common.CommonMapper;
- import com.iformall.domain.po.sm.UserMouldVideo;
- import org.apache.ibatis.annotations.Param;
-
- import java.util.List;
-
- public interface UserMouldVideoMapper extends CommonMapper<UserMouldVideo, Long> {
-
- List<UserMouldVideo> findList(UserMouldVideo record);
-
- int deleteById(@Param("id")Long id);
-
- /**
- * c端列表查询,尽量减少字段
- * @param record
- * @return
- */
- List<UserMouldVideo> findCList(UserMouldVideo record);
-
- UserMouldVideo findVideo(@Param("id")Long id);
-
- List<UserMouldVideo> getVideoIdNullList();
-
- List<UserMouldVideo> getVideoSizeNullList();
- }
|