1234567891011121314151617181920212223242526272829 |
- using AntDesign;
- using System.Collections.Generic;
- 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; }
- }
|