using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IBKLinker_Minio.Entity.MinioController
{
///
/// 查询minio文件文件夹路径model(包括模糊查询文件名称以及根据时间查询)
///
///
public class GetStoragePathModel
{
///
/// 文件名称
///
public string FileName { get; set; }
///
///子文件夹的父ID
///
public int Upk { get; set; }
///
/// 开始时间
///
public string BeginTime { set; get; }
///
/// 结束时间
///
public string EndTime { set; get; }
}
}