乱七八糟的修改,其他外围流程逻辑完善

This commit is contained in:
2024-12-15 17:31:39 +08:00
parent ba00a90412
commit c27d094965
25 changed files with 265 additions and 66 deletions

View File

@ -18,6 +18,8 @@ public interface SourceMapper {
SourceRespVO getById(Long id);
List<SourceEntity> listBySampleIds(List<Long> sourceIds);
int add(SourceEntity source);
int deleteById(Long id);
@ -37,4 +39,6 @@ public interface SourceMapper {
* @return
*/
int countByMemberId(String userId);
List<SourceEntity> listVideoBySampleIds(List<Long> sampleId);
}