1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using CZKJ.GBRS2.Model;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CZKJ.GBRS2.ViewModel
- {
-
-
-
- public class CustomerInfoViewModel
- {
-
-
-
-
-
-
-
- public IList<string> ContNos { get; set; }
-
-
-
- public List<ReportNoList> ReportList { get; set; } = new List<ReportNoList>();
- }
- public class ReportNoList
- {
-
-
-
- public string ContNo { get; set; }
-
-
-
- public string StartTime { get; set; }
-
-
-
- public string State { get; set; }
-
- }
- public class ReportNoListModel
- {
-
-
-
- public string ContNo { get; set; }
-
-
-
- public DateTime StartTime { get; set; }
-
-
-
- public string State { get; set; }
- }
- }
|