生成视频时发送通知,其他调整

This commit is contained in:
2025-01-06 18:44:53 +08:00
parent 9b32c2fd75
commit 00d53dd197
30 changed files with 403 additions and 83 deletions

View 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> {
}

View File

@ -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);
}

View File

@ -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);