| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System;
- using System.Collections.Generic;
- namespace Vo
- {
- public class FileVo
- {
- //文件Id
- public int fileId { get; set; }
- //版本Id
- public int versionId { get; set; }
- //文件名
- public string fileName { get; set; }
- //创建时间
- public string createTime { get; set; }
- //下载路径
- public string downloadPath { get; set; }
- //本地文件存放路径
- public string localPath { get; set; }
- //版本Id
- public int fileVersionNo { get; set; }
- //总版本号
- public int verNo { get; set; }
- //子集
- public List<FileVo> children { get; set; }
- }
- public class GetFileVo
- {
- //文件Id
- public int fileId { get; set; }
- //下载路径
- public string downloadPath { get; set; }
- //本地文件存放路径
- public string localPath { get; set; }
- }
- }
|