using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wispro.sp.entity { public class AttachFile { public Guid Id { get; set; } public string Name { get; set; } public string SavePath { get; set; } public Staff UploadUser { get; set; } public int UploadUserId { get; set; } public AppealRecord AppealRecord { get; set; } public int AppealRecordId { get; set; } } }