12345678910111213141516171819202122232425262728293031 |
- using AntDesign;
- using System.Collections.Generic;
- namespace wispro.sp.share
- {
- public class shenshou
- {
- public string Type { get; set; }
- public int ReviewerId { get; set; }
- public string Reason { get; set; }
- public string ChangeTo { get; set; }
- public List<UploadFileItem> Files { get; set; }
- }
- public class CalType
- {
- public string Type { get; set; } = "按照字数计算绩效";
- public int ReviewerId { get; set; }
- public int wordCount { get; set; }
- }
- public class shensuType
- {
- public string Name { get; set; }
- public string ChangeField { get; set; }
- }
- }
|