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; }//员工id 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; }//测试结果 public string WorkDev { get; set; }//机台 } }