12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Repository.Entiies
- {
- public class Information
- {
- public Guid Id { get; set; }
- public DateTime CreateTime { get; set; }
- public string OperatorCode { get; set; }
- public string ProCode { get; set; }
- public double SpendTime { get; set; }
- public string ProType { get; set; }
- public string ProNo { get; set; }
- public string ItemCode { get; set; }
- public string OrderNo { get; set; }
- public string TestResult { get; set; }
- }
- }
|