CollectInfoQuery.java 394 字节
Newer Older
1 2 3 4 5 6 7
package com.kwan.springbootkwan.entity.resp;

import lombok.Data;

import java.util.List;

@Data
8
public class CollectInfoQuery {
9 10 11 12 13 14 15 16 17 18
    private Integer sourceId;
    private String fromType;
    private String author;
    private String description;
    private String source;
    private List<Integer> folderIdList;
    private String title;
    private String url;
    private String username;
}