78 lines
2.2 KiB
Java
78 lines
2.2 KiB
Java
package com.zhangmeng.tools.music;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @author : 芊芊墨客
|
|
* @version : 1.0
|
|
* @date : 2023-04-21 11:38
|
|
*/
|
|
@Data
|
|
public class SongInfo {
|
|
/**
|
|
* musicrid : MUSIC_23497842
|
|
* barrage : 0
|
|
* ad_type :
|
|
* artist : 杭天琪
|
|
* mvpayinfo : {"play":0,"vid":0,"down":0}
|
|
* nationid : 0
|
|
* pic : https://img4.kuwo.cn/star/albumcover/500/30/92/3189025836.jpg
|
|
* isstar : 0
|
|
* rid : 23497842
|
|
* duration : 233
|
|
* score100 : 19
|
|
* ad_subtype : 0
|
|
* content_type : 0
|
|
* track : 13
|
|
* hasLossless : false
|
|
* hasmv : 0
|
|
* releaseDate : 2018-05-10
|
|
* album : 空
|
|
* albumid : 2856939
|
|
* pay : 16711935
|
|
* artistid : 2796
|
|
* albumpic : https://img4.kuwo.cn/star/albumcover/500/30/92/3189025836.jpg
|
|
* originalsongtype : 0
|
|
* songTimeMinutes : 03:53
|
|
* isListenFee : true
|
|
* pic120 : https://img4.kuwo.cn/star/albumcover/120/30/92/3189025836.jpg
|
|
* name : 发
|
|
* online : 1
|
|
* payInfo : {"play":"1111","nplay":"11111","overseas_nplay":"11111","local_encrypt":"1","limitfree":0,"refrain_start":107211,"feeType":{"song":"1","vip":"1"},"down":"1111","ndown":"11111","download":"1111","cannotDownload":0,"overseas_ndown":"11111","listen_fragment":"1","refrain_end":137211,"cannotOnlinePlay":0}
|
|
* tme_musician_adtype : 0
|
|
*/
|
|
|
|
private String musicrid;
|
|
private String barrage;
|
|
private String ad_type;
|
|
private String artist;
|
|
private MvPayInfo mvpayinfo;
|
|
private String nationid;
|
|
private String pic;
|
|
private int isstar;
|
|
private int rid;
|
|
private int duration;
|
|
private String score100;
|
|
private String ad_subtype;
|
|
private String content_type;
|
|
private int track;
|
|
private boolean hasLossless;
|
|
private int hasmv;
|
|
private String releaseDate;
|
|
private String album;
|
|
private int albumid;
|
|
private String pay;
|
|
private int artistid;
|
|
private String albumpic;
|
|
private int originalsongtype;
|
|
private String songTimeMinutes;
|
|
private boolean isListenFee;
|
|
private String pic120;
|
|
private String name;
|
|
private int online;
|
|
private PayInfo payInfo;
|
|
private String tme_musician_adtype;
|
|
private int id;
|
|
private String mp3Url;
|
|
}
|