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 { List findList(UserMouldVideo record); int deleteById(@Param("id")Long id); /** * c端列表查询,尽量减少字段 * @param record * @return */ List findCList(UserMouldVideo record); UserMouldVideo findVideo(@Param("id")Long id); List getVideoIdNullList(); List getVideoSizeNullList(); }