SharePackage.cs 576 B

1234567891011121314151617181920212223242526272829
  1. using AntDesign;
  2. using System.Collections.Generic;
  3. public class shenshou
  4. {
  5. public string Type { get; set; }
  6. public int ReviewerId { get; set; }
  7. public string Reason { get; set; }
  8. public string ChangeTo { get; set; }
  9. public List<UploadFileItem> Files { get; set; }
  10. }
  11. public class CalType
  12. {
  13. public string Type { get; set; } = "按照字数计算绩效";
  14. public int ReviewerId { get; set; }
  15. public int wordCount { get; set; }
  16. }
  17. public class shensuType
  18. {
  19. public string Name { get; set; }
  20. public string ChangeField { get; set; }
  21. }