123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models
- {
- public class BackProgress
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public int Diid { get; set; }
-
-
-
- public string BPTime { get; set; }
-
-
-
- public string BPRemark { get; set; }
-
-
-
- public string SQTime { get; set; }
-
-
-
- public string SQRemark { get; set; }
-
-
-
- public string CPJTime { get; set; }
-
-
-
- public string CPJRemark { get; set; }
-
-
-
- public string HZTime { get; set; }
-
-
-
- public string HZRemark { get; set; }
-
-
-
- public string QZTime { get; set; }
-
-
-
- public string QZRemark { get; set; }
-
-
-
- public string SQQZTime { get; set; }
-
-
-
- public string SQQZRemark { get; set; }
-
-
-
- public string CQTime { get; set; }
-
-
-
-
- public string CQRemark { get; set; }
-
-
-
- public string XQHTime { get; set; }
-
-
-
- public string XQHRemark { get; set; }
-
-
-
- public string SJTime { get; set; }
-
-
-
- public string SJRemark { get; set; }
-
-
-
- public int OPer { get; set; }
-
-
-
- public string OPDate { get; set; }
-
-
-
- public int Isdel { get; set; }
- }
- }
|