sunpengfei
2025-08-05 74f7cb1840db9dc031ca1aa3d5db3de04df8b612
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
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core
{
    /// <summary>
    /// 文件虚拟路径
    /// </summary>
    public class FileVirtualPath : CommonEntity
    {
        /// <summary>
        /// 文件存储Id
        /// </summary>
        public Guid StoreId { get; set; }
 
        /// <summary>
        /// 文件存储
        /// </summary>
        public FileStore Store { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        [Required]
        public string Name { get; set; }
 
        /// <summary>
        /// 虚拟路径
        /// </summary>
        [Required]
        public string VirtualPath { get; set; }
    }
}