-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
chenzhangyue
committed
Dec 3, 2023
1 parent
5713a1c
commit db63180
Showing
13 changed files
with
469 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
src/main/java/io/github/lunasaw/zlm/entity/DeleteRecordDirectory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package io.github.lunasaw.zlm.entity; | ||
|
||
import lombok.Data; | ||
|
||
/** | ||
* @author weidian | ||
* @version 1.0 | ||
* @date 2023/12/2 | ||
* @description: | ||
*/ | ||
@Data | ||
public class DeleteRecordDirectory extends ServerResponse<String> { | ||
private String path; | ||
|
||
} |
20 changes: 20 additions & 0 deletions
20
src/main/java/io/github/lunasaw/zlm/entity/Mp4RecordFile.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package io.github.lunasaw.zlm.entity; | ||
|
||
import lombok.Data; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* @author weidian | ||
* @version 1.0 | ||
* @date 2023/12/3 | ||
* @description: | ||
*/ | ||
@Data | ||
public class Mp4RecordFile { | ||
|
||
private List<String> paths; | ||
|
||
private String rootPath; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.