|
|
@@ -11,9 +11,9 @@ import java.util.List;
|
|
|
*/
|
|
|
public interface UploadChannelRepository extends BaseMapper<UploadChannel> {
|
|
|
int countByCreateBy(int createBy);
|
|
|
- List<UploadChannel> findByNodeIdAndCreateBy(int nodeId, int createBy);
|
|
|
- UploadChannel findByCreateByAndChannelId(int channelId, int createBy);
|
|
|
- UploadChannel findByCreateByAndNodeIdAndPrefix(String prefix, int createBy, int nodeId);
|
|
|
- UploadChannel findById(int id);
|
|
|
List<UploadChannel> findByCreateBy(int createBy);
|
|
|
+ List<UploadChannel> findByCreateByAndNodeId(int createBy, int nodeId);
|
|
|
+ UploadChannel findByCreateByAndChannelId(int createBy, int channelId);
|
|
|
+ UploadChannel findByCreateByAndPrefix(int createBy, String prefix);
|
|
|
+ UploadChannel findById(int id);
|
|
|
}
|