移动系统liao
2024-12-26 b80a3aa37ac5bed12dd6c49e9e731d5f375f80d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using DocumentServiceAPI.Model.cyDocumentModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace DocumentServiceAPI.Application.DocManage.Dtos
{
    public class FileInfo_List_Dto
    {
        public FileInfo_List_Dto()
        {
        }
 
        public FileInfo_List_Dto(File_Info file)
        {
            this.id = file.id;
            this.fileOldName = file.fileoldname;
            this.fileNewName = file.filenewname;
            this.filePath = file.filepath;
            this.isChange = false;
            this.filesize = file.filesize;
            this.sort = file.sort;
            this.suffix = file.suffix;
        }
 
        public int id { get; set; }
        public string fileOldName { get; set; }
        public string fileNewName { get; set; }
        public string filePath { get; set; }
        public bool isChange { get; set; }
 
        public long filesize { get; set; }
        public int sort { get; set; }
 
        /// <summary>
        /// 扩展名
        /// </summary>
        public string suffix { get; set; }
    }
}