You've already forked FrameTour-BE
关联关系修改
This commit is contained in:
@ -38,4 +38,6 @@ public interface OrderMapper {
|
||||
OrderAppRespVO appDetail(Long id);
|
||||
|
||||
List<OrderRespVO> refundList(OrderReqQuery query);
|
||||
|
||||
List<OrderItemEntity> listOrderItemByOrderId(Long orderId);
|
||||
}
|
||||
|
@ -51,4 +51,8 @@ public interface SourceMapper {
|
||||
List<SourceRespVO> listUser(SourceReqQuery sourceReqQuery);
|
||||
|
||||
int addRelations(List<MemberSourceEntity> list);
|
||||
|
||||
int updateRelation(MemberSourceEntity memberSourceEntity);
|
||||
|
||||
List<SourceRespVO> queryByRelation(SourceReqQuery sourceReqQuery);
|
||||
}
|
||||
|
@ -1,8 +1,6 @@
|
||||
package com.ycwl.basic.mapper;
|
||||
|
||||
import com.ycwl.basic.model.pc.template.entity.TemplateEntity;
|
||||
import com.ycwl.basic.model.pc.template.req.TemplateReqQuery;
|
||||
import com.ycwl.basic.model.pc.template.resp.TemplateRespVO;
|
||||
import com.ycwl.basic.model.pc.video.entity.MemberVideoEntity;
|
||||
import com.ycwl.basic.model.pc.video.entity.VideoEntity;
|
||||
import com.ycwl.basic.model.pc.video.req.VideoReqQuery;
|
||||
import com.ycwl.basic.model.pc.video.resp.VideoRespVO;
|
||||
@ -25,4 +23,11 @@ public interface VideoMapper {
|
||||
int update(VideoEntity task);
|
||||
|
||||
VideoEntity findByTaskId(@NonNull Long taskId);
|
||||
|
||||
|
||||
int addRelation(MemberVideoEntity source);
|
||||
int addRelations(List<MemberVideoEntity> list);
|
||||
int updateRelation(MemberVideoEntity memberVideoEntity);
|
||||
|
||||
List<VideoRespVO> queryByRelation(VideoReqQuery videoReqQuery);
|
||||
}
|
||||
|
Reference in New Issue
Block a user