SharePackage.cs 681 B

12345678910111213141516171819202122232425262728293031
  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 string Type { get; set; } = "按照字数计算绩效";
  16. public int ReviewerId { 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. }