Blame view

CompanyFilesDTO.java 217 Bytes
1 2 3 4 5 6
package com.subsidy.dto.company;

import lombok.Data;

@Data
public class CompanyFilesDTO {
涂亚平 committed
7
    
8 9 10 11 12 13
    private Integer pageSize;

    private Integer pageNum;

    private String fileName;

涂亚平 committed
14
    private Long treeId;
15 16 17


}