SharePackage.cs 664 B

1234567891011121314151617181920212223242526272829303132
  1. using AntDesign;
  2. using System.Collections.Generic;
  3. namespace wispro.sp.share
  4. {
  5. public class shenshou
  6. {
  7. public string Type { get; set; }
  8. public int ReviewerId { get; set; }
  9. public string Reason { get; set; }
  10. public string ChangeTo { get; set; }
  11. public List<UploadFileItem> Files { get; set; }
  12. }
  13. public class CalType
  14. {
  15. public int ReviewerId { get; set; }
  16. public string AgentMemo { get; set; }
  17. public int wordCount { get; set; }
  18. }
  19. public class shensuType
  20. {
  21. public string Name { get; set; }
  22. public string ChangeField { get; set; }
  23. }
  24. }