You've already forked FrameTour-BE
生成视频时发送通知,其他调整
This commit is contained in:
9
src/main/java/com/ycwl/basic/mapper/MpConfigMapper.java
Normal file
9
src/main/java/com/ycwl/basic/mapper/MpConfigMapper.java
Normal file
@ -0,0 +1,9 @@
|
||||
package com.ycwl.basic.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ycwl.basic.model.pc.mp.MpConfigEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface MpConfigMapper extends BaseMapper<MpConfigEntity> {
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package com.ycwl.basic.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ycwl.basic.model.pc.mp.MpNotifyConfigEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Mapper
|
||||
public interface MpNotifyConfigMapper extends BaseMapper<MpNotifyConfigEntity> {
|
||||
List<MpNotifyConfigEntity> listByMpId(Integer mpId);
|
||||
}
|
@ -34,6 +34,8 @@ public interface VideoMapper {
|
||||
|
||||
List<MemberVideoEntity> userFaceTemplateVideo(Long userId, Long faceId, Long templateId);
|
||||
|
||||
MemberVideoEntity queryRelationByMemberTask(Long userId, Long taskId);
|
||||
List<MemberVideoEntity> listRelationByTask(Long taskId);
|
||||
List<MemberVideoEntity> listRelationByFace(Long userId, Long faceId);
|
||||
List<MemberVideoEntity> listRelationByFaceAndTemplate(Long userId, Long faceId, Long templateId);
|
||||
|
||||
|
Reference in New Issue
Block a user