123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using Newtonsoft.Json;
- namespace Vo.Admin
- {
-
-
-
- public class GetPriRequestLogListVo
- {
-
-
-
- public int id { get; set; }
-
-
-
- public string batchNo { get; set; }
-
-
-
- public DateTime? excuteDate { get; set; }
-
-
-
- public DateTime? responseDate { get; set; }
-
-
-
- public DateTime? finishDate { get; set; }
- }
- }
|