-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
61 changed files
with
4,014 additions
and
2,672 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
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
37 changes: 37 additions & 0 deletions
37
src/main/java/com/sqmusicplus/base/entity/vo/DownloadInfoSearch.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,37 @@ | ||
package com.sqmusicplus.base.entity.vo; | ||
|
||
import com.alibaba.fastjson.annotation.JSONField; | ||
import com.baomidou.mybatisplus.annotation.TableField; | ||
import com.baomidou.mybatisplus.annotation.TableName; | ||
import com.fasterxml.jackson.annotation.JsonFormat; | ||
import com.sqmusicplus.base.entity.DownloadInfo; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
import lombok.experimental.Accessors; | ||
|
||
import java.util.Date; | ||
|
||
/** | ||
* @Classname DownloadInfoSearch | ||
* @Description 下载搜索 | ||
* @Version 1.0.0 | ||
* @Date 2024/8/15 16:01 | ||
* @Created by SQ | ||
*/ | ||
@Getter | ||
@Setter | ||
@Accessors(chain = true) | ||
public class DownloadInfoSearch extends DownloadInfo { | ||
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8") | ||
@JSONField(format="yyyy-MM-dd HH:mm:ss") | ||
private Date downloadTimeStart ; | ||
|
||
|
||
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8") | ||
@JSONField(format="yyyy-MM-dd HH:mm:ss") | ||
private Date downloadTimeEnd ; | ||
|
||
|
||
private Integer pageSize; | ||
private Integer pageIndex; | ||
} |
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
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
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
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.