1234567891011121314151617181920212223242526272829303132 |
- 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 int ReviewerId { get; set; }
- public string AgentMemo { get; set; }
- public int wordCount { get; set; }
- }
- public class shensuType
- {
- public string Name { get; set; }
- public string ChangeField { get; set; }
- }
- }
|