AttachFile.cs 517 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace wispro.sp.entity
  7. {
  8. public class AttachFile
  9. {
  10. public Guid Id { get; set; }
  11. public string Name { get; set; }
  12. public string SavePath { get; set; }
  13. public Staff UploadUser { get; set; }
  14. public int? UploadUserId { get; set; }
  15. public AppealRecord AppealRecord { get; set; }
  16. public int? AppealRecordId { get; set; }
  17. }
  18. }