using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 文件虚拟路径 /// public class FileVirtualPath : CommonEntity { /// /// 文件存储Id /// public Guid StoreId { get; set; } /// /// 文件存储 /// public FileStore Store { get; set; } /// /// 名称 /// [Required] public string Name { get; set; } /// /// 虚拟路径 /// [Required] public string VirtualPath { get; set; } } }